2023-11-14 17:47:43 +07:00
|
|
|
interface FormRef {
|
|
|
|
|
model: object | null
|
|
|
|
|
useLocation: object | null
|
|
|
|
|
[key: string]: any
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-22 13:02:02 +07:00
|
|
|
interface FormData {
|
|
|
|
|
checkInId: string
|
|
|
|
|
checkInDate: string | null
|
|
|
|
|
checkInTime: string
|
|
|
|
|
checkOutTime: string
|
|
|
|
|
checkInStatus: string
|
|
|
|
|
checkOutStatus: string
|
|
|
|
|
checkInLocation: string
|
|
|
|
|
}
|
|
|
|
|
export type { FormRef, FormData }
|