hrms-mgt/src/modules/09_leave/interface/response/specialTime.ts

26 lines
564 B
TypeScript
Raw Normal View History

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;
2023-12-12 09:38:42 +07:00
note: object | null;
[key: string]: any;
}
export type { DataRows, dataRowRound, MyObjectRoundRef };