21 lines
476 B
TypeScript
21 lines
476 B
TypeScript
interface ListData {
|
|
id: string;
|
|
fullname: string | null;
|
|
date: string | null;
|
|
dateFix: string | null;
|
|
startTimeMorning: string | null;
|
|
endTimeMorning: string | null;
|
|
startTimeAfternoon: string | null;
|
|
endTimeAfternoon: string | null;
|
|
status: string;
|
|
checkInStatus: string;
|
|
checkOutStatus: string;
|
|
checkOut: string;
|
|
checkIn: string;
|
|
}
|
|
|
|
interface DataDateMonthObject {
|
|
month: number;
|
|
year: number;
|
|
}
|
|
export type { ListData, DataDateMonthObject };
|