You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-12-08 23:07:32 +02:00
24 lines
487 B
TypeScript
24 lines
487 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 makeMenuItem(_item:any):any {
|
|
throw new Error('Not implemented');
|
|
}
|
|
|
|
public addWordToSpellCheckerDictionary(_language:string, _word:string) {
|
|
throw new Error('Not implemented');
|
|
}
|
|
|
|
}
|