28 lines
494 B
TypeScript
28 lines
494 B
TypeScript
// native
|
|
import * as fs from 'node:fs';
|
|
import * as path from 'path';
|
|
|
|
export { fs, path };
|
|
|
|
// @api.global scope
|
|
import * as typedrequest from '@api.global/typedrequest';
|
|
|
|
export {
|
|
typedrequest,
|
|
}
|
|
|
|
// @pushrocks scope
|
|
import * as smartlog from '@push.rocks/smartlog';
|
|
|
|
export { smartlog };
|
|
|
|
// @configvault.io scope
|
|
import * as configvaultInterfaces from '@configvault.io/interfaces';
|
|
|
|
export { configvaultInterfaces };
|
|
|
|
// third party scope
|
|
import * as yaml from 'yaml';
|
|
|
|
export { yaml };
|