vikunja-frontend/src/constants/priorities.ts
Dominik Pschenitschni 041a1a4cc0
move constants
2022-09-05 17:43:55 +02:00

10 lines
No EOL
183 B
TypeScript

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]