bunq/ts/bunq.classes.account.ts
2019-09-26 13:59:33 +02:00

19 lines
306 B
TypeScript

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() {
}
}