/** Range Day Ids */ export interface IRangeDayIds { /** Day Id at the beginning */ startId: string; /** Ids of days in the middle */ inRangeIds: string[]; /** Day Id at the end */ endId: string; }