-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtypes.ts
62 lines (47 loc) · 1.28 KB
/
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
55
56
57
58
59
60
61
62
export interface Fund {
id: string;
name?: string;
manager?: string;
creationTime?: string;
isShutdown?: boolean;
shutDownTime?: string;
accounting?: Accounting;
participation?: Participation;
feeManager?: FeeManager;
policyManager?: PolicyManager;
shares?: Shares;
trading?: Trading;
vault?: Vault;
registry?: Registry;
version?: Version;
engine?: Engine;
gav?: string;
feesInDenominationAsset?: string;
feesInShares?: string;
nav?: string;
sharePrice?: string;
gavPerShareNetManagementFee?: string;
allocatedFees?: string;
totalSupply?: string;
investments?: Investment;
calculationsUpdates?: FundCalculationsUpdate;
investmentLog?: InvestmentLog;
holdingsLog?: FundHoldingsLog;
lastCalculationsUpdate?: string;
}
// tslint:disable:no-empty-interface
export interface Registry {}
export interface Version {}
export interface Engine {}
export interface Accounting {}
export interface Trading {}
export interface Vault {}
export interface FeeManager {}
export interface Participation {}
export interface PolicyManager {}
export interface Shares {}
export interface Investment {}
export interface FundCalculationsUpdate {}
export interface FundCalculationsUpdate {}
export interface InvestmentLog {}
export interface FundHoldingsLog {}