forked from geolba/tethys.frontend
- linting sytax corrections
This commit is contained in:
parent
2a5c21806f
commit
304878c711
5 changed files with 23 additions and 8 deletions
|
@ -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
9
src/models/pagination.ts
Normal 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>;
|
||||
}
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue