Created a skeleton of the api
This commit is contained in:
10
src/lib/data/task-priority.ts
Normal file
10
src/lib/data/task-priority.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
export const PRIORITY = {
|
||||
high: "High",
|
||||
medium: "Medium",
|
||||
low: "Low",
|
||||
} as const;
|
||||
|
||||
export const PRIORITIES = Object.values(PRIORITY) as unknown as readonly [
|
||||
string,
|
||||
...string[],
|
||||
];
|
||||
Reference in New Issue
Block a user