2020-11-05 18:58:23 +02:00
|
|
|
export default class SpellCheckerServiceDriverBase {
|
|
|
|
|
2020-11-12 21:13:28 +02:00
|
|
|
public get availableLanguages(): string[] {
|
2020-11-05 18:58:23 +02:00
|
|
|
throw new Error('Not implemented');
|
|
|
|
}
|
|
|
|
|
2022-08-27 13:05:44 +02:00
|
|
|
public setLanguages(_v: string[]) {
|
2020-11-05 18:58:23 +02:00
|
|
|
throw new Error('Not implemented');
|
|
|
|
}
|
|
|
|
|
2020-11-12 21:13:28 +02:00
|
|
|
public get language(): string {
|
2020-11-05 18:58:23 +02:00
|
|
|
throw new Error('Not implemented');
|
|
|
|
}
|
|
|
|
|
2020-11-12 21:13:28 +02:00
|
|
|
public addWordToSpellCheckerDictionary(_language: string, _word: string) {
|
2020-11-05 18:58:23 +02:00
|
|
|
throw new Error('Not implemented');
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|