4 lines
155 B
TypeScript
4 lines
155 B
TypeScript
export type DateView = 'year' | 'month' | 'day';
|
|
export type TimeView = 'hours' | 'minutes' | 'seconds';
|
|
export type DateOrTimeView = DateView | TimeView;
|