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