From 4f3977d40ef4ec975a523ad9b01d8f40bfbaab42 Mon Sep 17 00:00:00 2001 From: Chesterkxng Date: Tue, 27 May 2025 16:39:41 +0200 Subject: [PATCH] feat: text-statistic (types) --- src/pages/tools/string/statistic/types.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/pages/tools/string/statistic/types.ts diff --git a/src/pages/tools/string/statistic/types.ts b/src/pages/tools/string/statistic/types.ts new file mode 100644 index 0000000..7dfe089 --- /dev/null +++ b/src/pages/tools/string/statistic/types.ts @@ -0,0 +1,7 @@ +export type InitialValuesType = { + emptyLines: boolean; + sentenceDelimiters?: string[]; + wordDelimiters: string; + characterCount: boolean; + wordCount: boolean; +};