11 lines
169 B
TypeScript
11 lines
169 B
TypeScript
interface Pagination {
|
|
page: number;
|
|
rowsPerPage: number;
|
|
}
|
|
|
|
interface ItemsDropdown {
|
|
labal: string;
|
|
val: string;
|
|
}
|
|
|
|
export type { Pagination, ItemsDropdown };
|