22 lines
370 B
TypeScript
22 lines
370 B
TypeScript
interface Pagination {
|
|
rowsPerPage: number;
|
|
}
|
|
|
|
interface DataOption {
|
|
id: string;
|
|
name: string;
|
|
}
|
|
interface NewPagination {
|
|
descending: boolean;
|
|
page: number;
|
|
rowsPerPage: number;
|
|
sortBy: string;
|
|
}
|
|
interface ItemsMenu {
|
|
label: string;
|
|
value: string;
|
|
icon: string;
|
|
color: string;
|
|
}
|
|
|
|
export type { Pagination, DataOption, NewPagination, ItemsMenu };
|