hrms-mgt/src/modules/09_leave/interface/index/Main.ts

10 lines
152 B
TypeScript
Raw Normal View History

2023-10-06 13:32:54 +07:00
interface DataOption {
2023-11-17 15:28:03 +07:00
id: string;
name: string;
2023-10-06 13:32:54 +07:00
}
2023-11-17 15:28:03 +07:00
interface DataOption2 {
id: number;
name: string;
}
export type { DataOption, DataOption2 };