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 };
|