import { IAtShift } from './IAtShift'; export interface IAtShiftPatternPreview { workingday: Date; isSaturday: boolean; isSunday: boolean; shifts: IAtShift[]; holidayCode?: string; holidayName?: string; }