mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-19 06:07:40 +00:00
9 lines
No EOL
238 B
TypeScript
9 lines
No EOL
238 B
TypeScript
class DefaultWordBreaker implements WorkerInternalWordBreaker {
|
|
// TODO: Specify the data needed to implement a 'default' word breaker.
|
|
constructor(obj) {
|
|
}
|
|
|
|
break(text: string): string[] {
|
|
throw "Not yet implemented.";
|
|
}
|
|
} |