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

11 lines
169 B
TypeScript
Raw Normal View History

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