fix(core): update

This commit is contained in:
2019-09-26 13:59:33 +02:00
parent 640ad81b70
commit def87cc216
3 changed files with 22 additions and 7 deletions

View File

@@ -0,0 +1,19 @@
import * as plugins from './bunq.plugins';
export interface IBunqConstructorOptions {
encryptionKey: string; // 16 byte encryption key
apiKey: "abcd-1234-abcd-1234"; // Your bunq API key
}
/**
* the main bunq account
*/
export class BunqAccount {
constructor(optionsArg) {
}
init() {
}
}