mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-23 02:36:05 +00:00
feat(projectFolders): first working draft
This commit is contained in:
parent
c5740a76ca
commit
e669037c17
27 changed files with 918 additions and 6 deletions
|
|
@ -225,6 +225,16 @@ export interface Task {
|
|||
_hideSubTasksMode?: number;
|
||||
}
|
||||
|
||||
export interface ProjectFolder {
|
||||
id: string;
|
||||
title: string;
|
||||
icon?: string | null;
|
||||
parentId?: string | null;
|
||||
isExpanded?: boolean;
|
||||
created: number;
|
||||
updated?: number;
|
||||
}
|
||||
|
||||
export interface Project {
|
||||
id: string;
|
||||
title: string;
|
||||
|
|
@ -241,6 +251,7 @@ export interface Project {
|
|||
noteIds: string[];
|
||||
isEnableBacklog?: boolean;
|
||||
isHiddenFromMenu?: boolean;
|
||||
folderId?: string | null;
|
||||
|
||||
// Advanced config (internal) - must be any to match WorkContextCommon
|
||||
advancedCfg: unknown;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue