import { SingleDateModel } from './single-date-model.interface'; import { RangeDatepickerInActions } from '../enums/range-datepicker-in-actions.enum'; export interface SelectedSingleDateModel { dateModel: SingleDateModel; hours: string; minute: string; seconds: string; selectedInUnixTime: string; selectedInISOString: string; action: RangeDatepickerInActions; } //# sourceMappingURL=selected-single-date-model.interface.d.ts.map