export interface ShiftData { ShiftId: number; AssetId: number; ProductionDate: string; ProductionShift: number; Shift: string; Crew: string; Start: string | Date; End: string | Date; prevShiftId: number; nextShiftId: number; } export interface ShiftsResponse { errorMessage: null; returnValue: number; tables: { 0: { columns: string[]; rows: ShiftData[]; }; }; }