2 Commits

Author SHA1 Message Date
328007fd97 1.0.4 2019-09-26 13:59:33 +02:00
def87cc216 fix(core): update 2019-09-26 13:59:33 +02:00
5 changed files with 24 additions and 9 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "@mojoio/bunq", "name": "@mojoio/bunq",
"version": "1.0.3", "version": "1.0.4",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

@ -1,6 +1,6 @@
{ {
"name": "@mojoio/bunq", "name": "@mojoio/bunq",
"version": "1.0.3", "version": "1.0.4",
"private": false, "private": false,
"description": "a bunq api abstraction package", "description": "a bunq api abstraction package",
"main": "dist/index.js", "main": "dist/index.js",

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 = {}; import * as bunqCommunityClient from '@bunq-community/bunq-js-client';
export {
removeme export { bunqCommunityClient };
}

View File

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