vikunja-frontend/src/types/IRepeats.ts

14 lines
265 B
TypeScript
Raw Normal View History

2022-07-21 19:16:13 +02:00
export const REPEAT_TYPES = {
Hours: 'hours',
Days: 'days',
Weeks: 'weeks',
Months: 'months',
Years: 'years',
} as const
export type RepeatType = typeof REPEAT_TYPES[keyof typeof REPEAT_TYPES]
export interface IRepeats {
type: RepeatType,
amount: number,
}