refector code

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-09-02 17:37:08 +07:00
parent 067ac5f173
commit 23d6801f80
9 changed files with 338 additions and 217 deletions

View file

@ -26,10 +26,24 @@ interface LocationObject {
}
interface Pagination {
sortBy: string
sortBy: string | null
descending: boolean
page: number
rowsPerPage: number
rowsPerPage: number | undefined
}
interface DataCheckIn {
checkInDate: string
checkInDateTime: string
checkInId: string
checkInLocation: string
checkInStatus: string
checkInTime: string
checkOutLocation: string
checkOutStatus: string
checkOutTime: string
editReason: string
editStatus: string
isEdit: boolean
}
export type {
@ -39,4 +53,5 @@ export type {
DataDateMonthObject,
LocationObject,
Pagination,
DataCheckIn,
}