feat: text-statistic (types)

This commit is contained in:
Chesterkxng
2025-05-27 16:39:41 +02:00
parent 09058c7c8a
commit 4f3977d40e

View File

@@ -0,0 +1,7 @@
export type InitialValuesType = {
emptyLines: boolean;
sentenceDelimiters?: string[];
wordDelimiters: string;
characterCount: boolean;
wordCount: boolean;
};