vikunja-frontend/src/types/IRepeatAfter.ts

14 lines
271 B
TypeScript
Raw Permalink Normal View History

2022-07-21 17:16:13 +00:00
export const REPEAT_TYPES = {
Hours: 'hours',
Days: 'days',
Weeks: 'weeks',
Months: 'months',
Years: 'years',
} as const
2022-08-04 18:57:43 +00:00
export type IRepeatType = typeof REPEAT_TYPES[keyof typeof REPEAT_TYPES]
2022-07-21 17:16:13 +00:00
2022-08-04 18:57:43 +00:00
export interface IRepeatAfter {
type: IRepeatType,
2022-07-21 17:16:13 +00:00
amount: number,
}