interface DataRows { id: string; fullname: string | null; date: string | null; dateFix: string | null; timeMorning: string; timeAfternoon: string; status: string; } interface dataRowRound { checkIn: string; checkOut: string; checkInStatus: string; checkOutStatus: string; note: string; } interface MyObjectRoundRef { checkIn: object | null; checkOut: object | null; checkInStatus: object | null; checkOutStatus: object | null; note: object | null; [key: string]: any; } export type { DataRows, dataRowRound, MyObjectRoundRef };