hrms-checkin/src/interface/index/Main.ts

11 lines
178 B
TypeScript
Raw Normal View History

2023-11-14 17:47:43 +07:00
interface DataOption {
id: string
name: string
}
interface FormRef {
date: object | null
reason: object | null
[key: string]: any
}
export type { DataOption, FormRef }