diff --git a/ts/bunq.classes.account.ts b/ts/bunq.classes.account.ts new file mode 100644 index 0000000..b49a1b9 --- /dev/null +++ b/ts/bunq.classes.account.ts @@ -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() { + + } +} \ No newline at end of file diff --git a/ts/bunq.plugins.ts b/ts/bunq.plugins.ts index d00ae0c..e12feab 100644 --- a/ts/bunq.plugins.ts +++ b/ts/bunq.plugins.ts @@ -1,4 +1,3 @@ -const removeme = {}; -export { - removeme -} +import * as bunqCommunityClient from '@bunq-community/bunq-js-client'; + +export { bunqCommunityClient }; diff --git a/ts/index.ts b/ts/index.ts index 3b13966..e69de29 100644 --- a/ts/index.ts +++ b/ts/index.ts @@ -1,3 +0,0 @@ -import * as plugins from './bunq.plugins'; - -export let standardExport = 'Hi there! :) This is an exported string';