- detailed help-view-component with titles and authors

- beginning search page styling
This commit is contained in:
Arno Kaimbacher 2021-12-07 12:22:25 +01:00
parent ed394e9587
commit 7cc4fc075c
7 changed files with 111 additions and 9 deletions

View file

@ -54,4 +54,23 @@ export interface DbDataset {
reject_editor_note: string;
reject_reviewer_note: string;
reviewer_note_visible: string;
titles: Array<Title>;
authors: Array<Author>;
}
export interface Title {
id: number;
type: string;
value: string;
language: string;
}
export interface Author {
id: number;
academic_title: string;
date_of_birth: string;
email: string;
first_name: string;
last_name: string;
name_type: string;
}