- add new tethys style

- use newest typescript version ^4.5.2
- new images for starting page
This commit is contained in:
Arno Kaimbacher 2021-11-19 16:11:26 +01:00
parent d6b4ff882f
commit 315f845292
14 changed files with 12135 additions and 30 deletions

View file

@ -51,10 +51,12 @@ export interface ResponseContent {
// }
export class FacetResults {
language!: Array<FacetItem>;
subject!: Array<FacetItem>;
// language!: Array<FacetItem>;
// subject!: Array<FacetItem>;
[key: string]: Array<FacetItem>;
}
//#region solr response facets
export class FacetFields {
// count: number;
language!: FacetInstance;
@ -80,3 +82,4 @@ export class FacetItem {
this.category = "";
}
}
//#endregion