1
0

feat: rename files with list to project

This commit is contained in:
Dominik Pschenitschni
2023-01-19 00:33:59 +01:00
committed by Gitea
parent ee732684bc
commit b9d3b5c756
23 changed files with 0 additions and 0 deletions

8
src/types/ProjectView.ts Normal file
View File

@ -0,0 +1,8 @@
export const LIST_VIEWS = {
LIST: 'list',
GANTT: 'gantt',
TABLE: 'table',
KANBAN: 'kanban',
} as const
export type ListView = typeof LIST_VIEWS[keyof typeof LIST_VIEWS]