better-word-count/src/settings/settings.ts

12 lines
353 B
TypeScript
Raw Normal View History

export class BetterWordCountSettings {
showWords: boolean = true;
wordsPrefix: string = "";
wordsSuffix: string = " words ";
showCharacters: boolean = true;
charactersPrefix: string = "";
charactersSuffix: string = " characters ";
2021-01-19 21:19:48 +00:00
showSentences: boolean = false;
sentencesPrefix: string = "";
sentencesSuffix: string = " sentences";
}