hrms-admin/src/modules/02_users/interface/index/Main.ts

13 lines
179 B
TypeScript
Raw Normal View History

2024-05-29 17:58:57 +07:00
interface Pagination {
rowsPerPage: number;
}
interface ItemsMenu {
label: string;
icon: string;
color: string;
type: string;
}
export type { Pagination, ItemsMenu };