better-word-count/src/settings/settings.ts
2021-01-19 23:19:48 +02:00

11 lines
353 B
TypeScript

export class BetterWordCountSettings {
showWords: boolean = true;
wordsPrefix: string = "";
wordsSuffix: string = " words ";
showCharacters: boolean = true;
charactersPrefix: string = "";
charactersSuffix: string = " characters ";
showSentences: boolean = false;
sentencesPrefix: string = "";
sentencesSuffix: string = " sentences";
}