@spaced-out/ui-design-system
Version:
Sense UI components library
21 lines • 603 B
TypeScript
export type TimeUnit = 'years' | 'months' | 'days' | 'd' | 'M' | 'y';
export type DateRange = {
startDate?: string | null | undefined;
endDate?: string | null | undefined;
};
export type DateRangePickerErrorTypes = {
[key: string]: {
type: string;
description: string;
};
};
export type DateRangePickerError = {
type: string;
description: string;
};
export type DateRangeWithTimezone = DateRange & {
startDateUTC?: string | null | undefined;
endDateUTC?: string | null | undefined;
timezone?: string;
};
//# sourceMappingURL=date-range-picker.d.ts.map