Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
328007fd97 | |||
def87cc216 |
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@mojoio/bunq",
|
||||
"version": "1.0.3",
|
||||
"version": "1.0.4",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@mojoio/bunq",
|
||||
"version": "1.0.3",
|
||||
"version": "1.0.4",
|
||||
"private": false,
|
||||
"description": "a bunq api abstraction package",
|
||||
"main": "dist/index.js",
|
||||
|
19
ts/bunq.classes.account.ts
Normal file
19
ts/bunq.classes.account.ts
Normal 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() {
|
||||
|
||||
}
|
||||
}
|
@ -1,4 +1,3 @@
|
||||
const removeme = {};
|
||||
export {
|
||||
removeme
|
||||
}
|
||||
import * as bunqCommunityClient from '@bunq-community/bunq-js-client';
|
||||
|
||||
export { bunqCommunityClient };
|
||||
|
@ -1,3 +0,0 @@
|
||||
import * as plugins from './bunq.plugins';
|
||||
|
||||
export let standardExport = 'Hi there! :) This is an exported string';
|
||||
|
Reference in New Issue
Block a user