import { IDate } from './date.interface'; export interface IRangeDate { startDate: IDate; endDate: IDate; }