- linting sytax corrections

This commit is contained in:
Arno Kaimbacher 2022-06-01 13:16:54 +02:00
parent 2a5c21806f
commit 304878c711
5 changed files with 23 additions and 8 deletions

View file

@ -9,3 +9,8 @@ export interface OaiDataset {
east: number;
west: number;
}
export interface OaiPerson {
contributorName: string;
creatorName: string;
}

9
src/models/pagination.ts Normal file
View file

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