- 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
This commit is contained in:
Kaimbacher 2024-03-19 16:43:25 +01:00
parent 315eabf3bb
commit c6469b00b4
13 changed files with 885 additions and 689 deletions

View file

@ -1,9 +1,9 @@
import { Dataset } from "./dataset";
export interface Pagination {
export interface IPagination {
total: number;
per_page?: number;
current_page: number;
last_page?: number;
perPage: number;
currentPage: number;
lastPage?: number;
data: Array<Dataset>;
}