11 lines
192 B
TypeScript
11 lines
192 B
TypeScript
export const PRIORITY = {
|
|
high: "High",
|
|
medium: "Medium",
|
|
low: "Low",
|
|
} as const;
|
|
|
|
export const PRIORITIES = Object.values(PRIORITY) as unknown as readonly [
|
|
string,
|
|
...string[],
|
|
];
|