tethys.frontend/src/models/pagination.ts
Arno Kaimbacher c6469b00b4 - added src/compoenents/Pagination.vue
- npm updates
- added "type": "module" inside package.json
- renamed .eslintrc.js, postcss.config.js and vue.config.js
- adapted search-view-component
2024-03-19 16:43:25 +01:00

9 lines
185 B
TypeScript

import { Dataset } from "./dataset";
export interface IPagination {
total: number;
perPage: number;
currentPage: number;
lastPage?: number;
data: Array<Dataset>;
}