bunq/ts/bunq.plugins.ts

18 lines
518 B
TypeScript
Raw Normal View History

2019-10-02 21:34:05 +00:00
// node natice
import * as path from 'path';
2020-06-20 01:47:53 +00:00
export { path };
2019-10-02 21:34:05 +00:00
// @pushrocks scope
import * as smartcrypto from '@pushrocks/smartcrypto';
import * as smartfile from '@pushrocks/smartfile';
import * as smartpromise from '@pushrocks/smartpromise';
2020-06-20 01:47:53 +00:00
export { smartcrypto, smartfile, smartpromise };
2019-10-02 21:34:05 +00:00
// third party
2020-06-20 01:47:53 +00:00
import JSONFileStore from '@bunq-community/bunq-js-client/dist/Stores/JSONFileStore';
2019-09-26 11:59:33 +00:00
import * as bunqCommunityClient from '@bunq-community/bunq-js-client';
2019-10-02 21:34:05 +00:00
export { JSONFileStore, bunqCommunityClient };