forked from ncihtan/htan-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.ts
54 lines (47 loc) · 994 Bytes
/
types.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
export interface CmsData {
slug: string;
content: {
rendered: string;
protected: boolean;
};
title: {
rendered: string;
};
}
export interface SubCategory {
data: {
attributes: Attribute[];
values: any[];
};
dataLink: string;
}
export interface Attribute {
name: string;
description: string;
schemaMetadata: { renderType?: string };
}
export interface Category {
[subcat: string]: SubCategory;
}
export enum HtaCenterPhase {
Phase1 = 'phase1',
Phase2 = 'phase2',
DCC = 'dcc',
}
export interface HtaCenter {
phase: HtaCenterPhase;
title: string;
grantNumber?: string;
principalInvestigators: PrincipalInvestigator[];
description: string | string[];
customURL?: string;
}
export interface HtaCenters {
[key: string]: HtaCenter;
}
export interface PrincipalInvestigator {
name: string;
center: string;
description?: string;
isContact?: boolean;
}