hrms-admin/src/modules/03_logs/interface/index/Main.ts

12 lines
169 B
TypeScript
Raw Normal View History

2024-05-29 17:58:57 +07:00
interface Pagination {
2024-09-09 15:28:53 +07:00
page: number;
2024-05-29 17:58:57 +07:00
rowsPerPage: number;
}
2024-09-09 15:28:53 +07:00
interface ItemsDropdown {
labal: string;
val: string;
}
export type { Pagination, ItemsDropdown };