21 lines
367 B
TypeScript
21 lines
367 B
TypeScript
interface DataOption {
|
|
id: string;
|
|
name: string;
|
|
}
|
|
interface DataOption2 {
|
|
id: number;
|
|
name: string;
|
|
}
|
|
|
|
interface DataDateMonthObject {
|
|
month: number;
|
|
year: number;
|
|
}
|
|
|
|
interface DataPagination {
|
|
descending: boolean;
|
|
page: number;
|
|
rowsPerPage: number;
|
|
sortBy: string;
|
|
}
|
|
export type { DataOption, DataOption2, DataDateMonthObject, DataPagination };
|