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