11 lines
353 B
TypeScript
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";
|
|
}
|