3 lines
No EOL
154 B
TypeScript
3 lines
No EOL
154 B
TypeScript
export type DateView = 'year' | 'month' | 'day';
|
|
export type TimeView = 'hours' | 'minutes' | 'seconds';
|
|
export type DateOrTimeView = DateView | TimeView; |