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

11 lines
194 B
TypeScript
Raw Normal View History

2023-11-07 11:17:13 +07:00
interface DataOption {
id: string;
name: string;
}
2023-11-08 13:44:03 +07:00
interface FormRef {
date: object | null;
reason: object | null;
[key: string]: any;
}
export type { DataOption, FormRef };