hrms-mgt/src/modules/11_discipline/interface/request/result.ts

11 lines
147 B
TypeScript
Raw Normal View History

2023-11-24 16:52:10 +07:00
interface FormData {
detail: string;
}
interface FormRef {
detail: object | null;
[key: string]: any;
}
export type { FormData, FormRef };