16 lines
490 B
TypeScript
16 lines
490 B
TypeScript
// native
|
|
import * as crypto from 'node:crypto';
|
|
import * as fs from 'node:fs/promises';
|
|
import * as http from 'node:http';
|
|
import * as path from 'node:path';
|
|
|
|
export { crypto, fs, http, path };
|
|
|
|
// @push.rocks scope
|
|
import * as projectinfo from '@push.rocks/projectinfo';
|
|
import * as smartpath from '@push.rocks/smartpath';
|
|
import * as smartstorage from '@push.rocks/smartstorage';
|
|
import * as smartdb from '@push.rocks/smartdb';
|
|
|
|
export { projectinfo, smartpath, smartstorage, smartdb };
|