vikunja/frontend/src/constants/timeFormat.ts

7 lines
147 B
TypeScript

export const TIME_FORMAT = {
HOURS_12: '12h',
HOURS_24: '24h',
} as const
export type TimeFormat = typeof TIME_FORMAT[keyof typeof TIME_FORMAT]