2020-11-05 16:58:23 +00:00
|
|
|
export default class SpellCheckerServiceDriverBase {
|
|
|
|
|
2020-11-12 19:13:28 +00:00
|
|
|
public get availableLanguages(): string[] {
|
2020-11-05 16:58:23 +00:00
|
|
|
throw new Error('Not implemented');
|
|
|
|
}
|
|
|
|
|
2020-11-12 19:13:28 +00:00
|
|
|
public setLanguage(_v: string) {
|
2020-11-05 16:58:23 +00:00
|
|
|
throw new Error('Not implemented');
|
|
|
|
}
|
|
|
|
|
2020-11-12 19:13:28 +00:00
|
|
|
public get language(): string {
|
2020-11-05 16:58:23 +00:00
|
|
|
throw new Error('Not implemented');
|
|
|
|
}
|
|
|
|
|
2020-11-12 19:13:28 +00:00
|
|
|
public addWordToSpellCheckerDictionary(_language: string, _word: string) {
|
2020-11-05 16:58:23 +00:00
|
|
|
throw new Error('Not implemented');
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|