bunq/ts/bunq.classes.account.ts

19 lines
306 B
TypeScript
Raw Normal View History

2019-09-26 11:59:33 +00:00
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() {
}
}