28 lines
504 B
TypeScript
28 lines
504 B
TypeScript
export enum TaskStatus {
|
|
Progress = 'progress',
|
|
Removed = 'removed',
|
|
Done = 'done',
|
|
}
|
|
|
|
export enum FolderType {
|
|
Project = 'project',
|
|
Information = 'information',
|
|
}
|
|
|
|
export enum PageType {
|
|
Main = '',
|
|
ChaosBox = 'chaos-box',
|
|
Projects = 'projects',
|
|
Information = 'information',
|
|
Tags = 'tags',
|
|
Calendar = 'calendar',
|
|
Settings = 'settings',
|
|
SigIn = 'sign-in',
|
|
}
|
|
|
|
export enum Icon {
|
|
AcUnit = 'acUnit',
|
|
Apple = 'apple',
|
|
Apartment = 'apartment',
|
|
}
|