refactor: mark deprecated items in MiscConfig for future removal

This commit is contained in:
Ivan Kalashnikov 2026-01-18 20:34:16 +07:00
parent 814b1dd373
commit 2937359be8

View file

@ -35,6 +35,14 @@ export type MiscConfig = Readonly<{
customTheme?: string;
defaultStartPage?: number;
unsplashApiKey?: string | null;
// @todo: remove deprecated items in future major releases, after giving users time to migrate
isConfirmBeforeTaskDelete?: boolean; // Deprecated
isAutoAddWorkedOnToToday?: boolean; // Deprecated
isAutMarkParentAsDone?: boolean; // Deprecated
isTrayShowCurrentTask?: boolean; // Deprecated
defaultProjectId?: string | null | false; // Deprecated
taskNotesTpl?: string; // Deprecated
}>;
export type TasksConfig = Readonly<{