fix(core): update

This commit is contained in:
Philipp Kunz 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() {
}
}

View File

@ -1,4 +1,3 @@
const removeme = {};
export {
removeme
}
import * as bunqCommunityClient from '@bunq-community/bunq-js-client';
export { bunqCommunityClient };

View File

@ -1,3 +0,0 @@
import * as plugins from './bunq.plugins';
export let standardExport = 'Hi there! :) This is an exported string';