Files
bunq/ts/bunq.plugins.ts

15 lines
477 B
TypeScript
Raw Normal View History

2025-07-18 10:31:12 +00:00
// node native
2019-10-02 23:34:05 +02:00
import * as path from 'path';
2025-07-18 10:31:12 +00:00
import * as crypto from 'crypto';
2019-10-02 23:34:05 +02:00
2025-07-18 10:31:12 +00:00
export { path, crypto };
2019-10-02 23:34:05 +02:00
// @pushrocks scope
2025-07-18 10:31:12 +00:00
import * as smartcrypto from '@push.rocks/smartcrypto';
import * as smartfile from '@push.rocks/smartfile';
import * as smartpromise from '@push.rocks/smartpromise';
import * as smartrequest from '@push.rocks/smartrequest';
import * as smarttime from '@push.rocks/smarttime';
2019-10-02 23:34:05 +02:00
2025-07-18 10:31:12 +00:00
export { smartcrypto, smartfile, smartpromise, smartrequest, smarttime };