This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/constants/priorities.ts

10 lines
183 B
TypeScript
Raw Normal View History

2022-06-23 01:14:58 +00:00
export const PRIORITIES = {
'UNSET': 0,
'LOW': 1,
'MEDIUM': 2,
'HIGH': 3,
'URGENT': 4,
'DO_NOW': 5,
2022-07-20 19:15:35 +00:00
} as const
export type Priority = typeof PRIORITIES[keyof typeof PRIORITIES]