2024-01-12 13:54:47 +07:00
|
|
|
interface Pagination {
|
|
|
|
|
rowsPerPage: number;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface DataOption {
|
|
|
|
|
id: string;
|
|
|
|
|
name: string;
|
|
|
|
|
}
|
2024-05-08 10:48:10 +07:00
|
|
|
interface NewPagination {
|
|
|
|
|
descending: boolean;
|
|
|
|
|
page: number;
|
|
|
|
|
rowsPerPage: number;
|
|
|
|
|
sortBy: string;
|
|
|
|
|
}
|
|
|
|
|
interface ItemsMenu {
|
|
|
|
|
label: string;
|
|
|
|
|
value: string;
|
|
|
|
|
icon: string;
|
|
|
|
|
color: string;
|
|
|
|
|
}
|
2024-01-12 13:54:47 +07:00
|
|
|
|
2024-05-08 10:48:10 +07:00
|
|
|
export type { Pagination, DataOption, NewPagination, ItemsMenu };
|