mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-09 08:45:55 +02:00
20 lines
415 B
TypeScript
20 lines
415 B
TypeScript
export default class SpellCheckerServiceDriverBase {
|
|
|
|
public get availableLanguages(): string[] {
|
|
throw new Error('Not implemented');
|
|
}
|
|
|
|
public setLanguages(_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');
|
|
}
|
|
|
|
}
|