12 lines
352 B
TypeScript
12 lines
352 B
TypeScript
|
export class BetterWordCountSettings {
|
||
|
showWords: boolean = true;
|
||
|
wordsPrefix: string = "";
|
||
|
wordsSuffix: string = " words ";
|
||
|
showCharacters: boolean = true;
|
||
|
charactersPrefix: string = "";
|
||
|
charactersSuffix: string = " characters ";
|
||
|
showSentences: boolean = true;
|
||
|
sentencesPrefix: string = "";
|
||
|
sentencesSuffix: string = " sentences";
|
||
|
}
|