Skip to content

Commit 862c2e1

Browse files
committed
fix(flutterwaveinit): add missing currencies to currency type
1 parent 8ed8074 commit 862c2e1

File tree

1 file changed

+28
-1
lines changed

1 file changed

+28
-1
lines changed

src/FlutterwaveInit.ts

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,34 @@ import FlutterwaveInitError from './utils/FlutterwaveInitError';
22
import ResponseParser from './utils/ResponseParser';
33
import {STANDARD_URL} from './configs';
44

5-
export type Currency = 'GBP' | 'NGN' | 'USD' | 'GHS' | 'KES' | 'ZAR' | 'TZS';
5+
export type Currency =
6+
'AUD' |
7+
'BIF' |
8+
'CDF' |
9+
'CAD' |
10+
'CVE' |
11+
'EUR' |
12+
'GBP' |
13+
'GHS' |
14+
'GMD' |
15+
'GNF' |
16+
'KES' |
17+
'LRD' |
18+
'MWK' |
19+
'MZN' |
20+
'NGN' |
21+
'RWF' |
22+
'SLL' |
23+
'STD' |
24+
'TZS' |
25+
'UGX' |
26+
'USD' |
27+
'XAF' |
28+
'XOF' |
29+
'ZAR' |
30+
'ZMK' |
31+
'ZMW' |
32+
'ZWD';
633

734
export interface FlutterwaveInitSubAccount {
835
id: string;

0 commit comments

Comments
 (0)