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