-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
52 lines (49 loc) · 1.31 KB
/
index.d.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
// index.d.ts for typescript users
// declare function ffCoupon(
// bondDetails: { amount: number },
// securityDetails: { symbol: string; isin: string; coupon: number },
// paymentDate: Date
// ): {
// externalSymbol: string;
// transactionDate: Date;
// paymentDate: Date;
// processingDate: Date;
// symbol: string;
// symbolCurrency: string;
// type: string;
// amount: number;
// price: number;
// netAmount: number;
// currency: string;
// description: string;
// fees: number;
// assetType: string;
// };
// export default ffCoupon;
// index.d.ts for typescript users
// declare function ff(): number;
// export default ff;
// declare const ffpublic: {
// ff: () => number;
// ffCoupon: (
// bondDetails: { amount: number },
// securityDetails: { symbol: string; isin: string; coupon: number },
// paymentDate: Date
// ) => {
// externalSymbol: string;
// transactionDate: Date;
// paymentDate: Date;
// processingDate: Date;
// symbol: string;
// symbolCurrency: string;
// type: string;
// amount: number;
// price: number;
// netAmount: number;
// currency: string;
// description: string;
// fees: number;
// assetType: string;
// };
// };
// export default ffpublic;