UNPKG

@cauca-911/material

Version:

Run `npm install @cauca-911/material --save` to add this library to your project

27 lines 712 B
export interface DialogDateTimePickerDataStep { hours: number; minutes: number; seconds: number; } export interface DialogDateTimePickerDataDisabled { hours: boolean; someHours: number[]; minutes: boolean; someMinutes: number[]; seconds: boolean; someSeconds: number[]; } export interface DialogDateTimePickerOptions { selectedDate: Date; minimumDate: Date | null; maximumDate: Date | null; showSeconds: boolean; showClearButton: boolean; showButtonIcons: boolean; showTime: boolean; step: DialogDateTimePickerDataStep; } export interface DialogDateTimePickerValue { value: Date; } //# sourceMappingURL=dialog-date-time-picker-data.d.ts.map