move constants
This commit is contained in:
10
src/constants/priorities.ts
Normal file
10
src/constants/priorities.ts
Normal file
@ -0,0 +1,10 @@
|
||||
export const PRIORITIES = {
|
||||
'UNSET': 0,
|
||||
'LOW': 1,
|
||||
'MEDIUM': 2,
|
||||
'HIGH': 3,
|
||||
'URGENT': 4,
|
||||
'DO_NOW': 5,
|
||||
} as const
|
||||
|
||||
export type Priority = typeof PRIORITIES[keyof typeof PRIORITIES]
|
Reference in New Issue
Block a user