Next steps

This commit is contained in:
2026-02-21 13:47:12 +01:00
parent 939983a717
commit c1810aa6b7
22 changed files with 6864 additions and 355 deletions

25
src/types.ts Normal file
View File

@@ -0,0 +1,25 @@
export enum TaskStatus {
NONE,
DONE,
WIP,
WAIT,
FLAG,
}
export type Worklog = {
start: number;
end: number;
};
export type Task = {
"uuid": string,
"archived": boolean,
"tag": string,
"title": string,
"status": TaskStatus,
"lastaction": number,
"logs": Worklog[],
"dueDate": number,
"id_": number,
"id": number
}