11 lines
145 B
TypeScript
11 lines
145 B
TypeScript
|
|
interface Pagination {
|
||
|
|
rowsPerPage: number;
|
||
|
|
}
|
||
|
|
|
||
|
|
interface DataOption {
|
||
|
|
id: string;
|
||
|
|
name: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export type { Pagination, DataOption };
|