Files
smartdeno/ts/plugins.ts

30 lines
593 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 smartfs from '@push.rocks/smartfs';
import * as smartpath from '@push.rocks/smartpath';
import * as smartshell from '@push.rocks/smartshell';
import * as smartunique from '@push.rocks/smartunique';
export {
lik,
smartarchive,
smartfs,
smartpath,
smartshell,
smartunique,
}