hrms-checkin/src/interface/index/Main.ts
2023-11-14 17:47:43 +07:00

10 lines
178 B
TypeScript

interface DataOption {
id: string
name: string
}
interface FormRef {
date: object | null
reason: object | null
[key: string]: any
}
export type { DataOption, FormRef }