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