2021-01-19 20:39:10 +00:00
|
|
|
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;
|
2021-01-19 20:39:10 +00:00
|
|
|
sentencesPrefix: string = "";
|
|
|
|
sentencesSuffix: string = " sentences";
|
|
|
|
}
|