mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
20 lines
407 B
TypeScript
20 lines
407 B
TypeScript
export default class SpellCheckerServiceDriverBase {
|
|
|
|
public get availableLanguages():string[] {
|
|
throw new Error('Not implemented');
|
|
}
|
|
|
|
public setLanguage(_v:string) {
|
|
throw new Error('Not implemented');
|
|
}
|
|
|
|
public get language():string {
|
|
throw new Error('Not implemented');
|
|
}
|
|
|
|
public addWordToSpellCheckerDictionary(_language:string, _word:string) {
|
|
throw new Error('Not implemented');
|
|
}
|
|
|
|
}
|