16 lines
322 B
TypeScript
16 lines
322 B
TypeScript
interface FormRef {
|
|
model: object | null
|
|
useLocation: object | null
|
|
[key: string]: any
|
|
}
|
|
|
|
interface FormData {
|
|
checkInId: string
|
|
checkInDate: string | null
|
|
checkInTime: string
|
|
checkOutTime: string
|
|
checkInStatus: string
|
|
checkOutStatus: string
|
|
checkInLocation: string
|
|
}
|
|
export type { FormRef, FormData }
|