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

14 lines
195 B
TypeScript
Raw Normal View History

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