From 7e75160a600b36d66d74934e9634ae80e546a778 Mon Sep 17 00:00:00 2001 From: Wojciech Boman Date: Thu, 4 Jan 2024 17:34:45 +0100 Subject: [PATCH] Remove TextInputSelection type --- src/types/utils/TextInputSelection.ts | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 src/types/utils/TextInputSelection.ts diff --git a/src/types/utils/TextInputSelection.ts b/src/types/utils/TextInputSelection.ts deleted file mode 100644 index 8c7671a60ccc..000000000000 --- a/src/types/utils/TextInputSelection.ts +++ /dev/null @@ -1,6 +0,0 @@ -type TextInputSelection = { - start: number; - end: number; -}; - -export default TextInputSelection;