hrms-mgt/src/modules/18_command/interface/index/Main.ts

11 lines
154 B
TypeScript
Raw Normal View History

2024-09-09 17:26:30 +07:00
interface Pagination {
rowsPerPage: number;
}
interface DataOption {
2024-09-10 18:03:01 +07:00
id: string | number;
2024-09-09 17:26:30 +07:00
name: string;
}
export type { Pagination, DataOption };