hrms-mgt/src/modules/14_KPI/interface/index/Main.ts

21 lines
310 B
TypeScript
Raw Normal View History

2024-04-05 14:08:20 +07:00
interface DataOption {
id: string;
name: string;
}
2024-04-05 14:08:20 +07:00
interface ItemsMenu {
label: string;
value: string;
icon: string;
color: string;
}
interface NewPagination {
descending: boolean;
page: number;
rowsPerPage: number;
sortBy: string;
}
export type { DataOption, ItemsMenu,NewPagination };