Files
corestore/ts/corestore.plugins.ts
T
2026-05-02 15:01:41 +00:00

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 };