mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 08:25:32 +00:00
12 lines
No EOL
300 B
TypeScript
12 lines
No EOL
300 B
TypeScript
///<reference path="virtualizedWorker.ts" />
|
|
|
|
namespace com.keyman.text.prediction {
|
|
export class DefaultWorker {
|
|
static constructInstance(): Worker {
|
|
let scriptStr = LMLayer.unwrap(LMLayerWorkerCode);
|
|
let worker = new VirtualizedWorker(scriptStr);
|
|
|
|
return worker;
|
|
}
|
|
}
|
|
} |