This commit is contained in:
2026-02-08 21:47:33 +00:00
commit d8b5e8a6c0
22 changed files with 11080 additions and 0 deletions

21
ts/plugins.ts Normal file
View File

@@ -0,0 +1,21 @@
// node native
import * as fs from 'fs';
import * as path from 'path';
import * as os from 'os';
export { fs, path, os };
// @push.rocks scope
import * as smartdelay from '@push.rocks/smartdelay';
import * as smartexit from '@push.rocks/smartexit';
import { SmartRequest } from '@push.rocks/smartrequest';
import * as smartshell from '@push.rocks/smartshell';
import * as smartunique from '@push.rocks/smartunique';
export {
smartdelay,
smartexit,
SmartRequest,
smartshell,
smartunique,
};