19 lines
306 B
TypeScript
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() {
|
||
|
|
||
|
}
|
||
|
}
|