smartdeno/ts/plugins.ts
2024-03-17 21:24:25 +01:00

30 lines
601 B
TypeScript

// node native scope
import * as path from 'path';
export {
path,
}
// @api.global scope
import * as typedserver from '@api.global/typedserver';
export {
typedserver,
}
// @push.rocks scope
import * as lik from '@push.rocks/lik';
import * as smartarchive from '@push.rocks/smartarchive';
import * as smartfile from '@push.rocks/smartfile';
import * as smartpath from '@push.rocks/smartpath';
import * as smarthshell from '@push.rocks/smartshell';
import * as smartunique from '@push.rocks/smartunique';
export {
lik,
smartarchive,
smartfile,
smartpath,
smarthshell,
smartunique,
}