From 8e089baee427394974e0001ebc74b1ba99e8d58d Mon Sep 17 00:00:00 2001 From: Grol Grol Date: Fri, 25 Apr 2025 02:43:51 +0300 Subject: [PATCH] add new field enableAutomaticFileSync: boolean --- src/types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/types.ts b/src/types.ts index f8f4b83..709bee8 100644 --- a/src/types.ts +++ b/src/types.ts @@ -5,6 +5,7 @@ export interface CheckboxSyncPluginSettings { uncheckedSymbols: string[]; ignoreSymbols: string[]; unknownSymbolPolicy: CheckboxState; + enableAutomaticFileSync: boolean; } export enum CheckboxState { @@ -20,4 +21,5 @@ export const DEFAULT_SETTINGS: CheckboxSyncPluginSettings = { uncheckedSymbols: [' '], ignoreSymbols: [], unknownSymbolPolicy: CheckboxState.Checked, + enableAutomaticFileSync: false, }; \ No newline at end of file