From e7d57e7cec1c25901370535af57d1c98de15ad1a Mon Sep 17 00:00:00 2001 From: kotaindah55 Date: Thu, 6 Feb 2025 21:38:38 +0200 Subject: [PATCH] feat: add CharPos type --- src/types/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/types/index.ts b/src/types/index.ts index 71f587d..07c3a2e 100644 --- a/src/types/index.ts +++ b/src/types/index.ts @@ -88,4 +88,6 @@ export type PluginSettings = { customAlign: SettingOpt1; editorEscape: boolean; colorButton: boolean; -} \ No newline at end of file +} + +export type CharPos = { from: number, to: number }; \ No newline at end of file