Files
qenv/ts/qenv.plugins.ts
T

28 lines
494 B
TypeScript
Raw Permalink Normal View History

2019-01-06 01:30:07 +01:00
// native
import * as fs from 'node:fs';
2019-01-06 01:30:07 +01:00
import * as path from 'path';
export { fs, path };
2019-01-06 01:30:07 +01:00
2023-08-09 17:47:20 +02:00
// @api.global scope
import * as typedrequest from '@api.global/typedrequest';
export {
typedrequest,
}
2019-01-06 01:30:07 +01:00
// @pushrocks scope
2023-08-08 19:08:25 +02:00
import * as smartlog from '@push.rocks/smartlog';
2019-01-06 01:30:07 +01:00
export { smartlog };
2023-08-09 17:47:20 +02:00
// @configvault.io scope
import * as configvaultInterfaces from '@configvault.io/interfaces';
export { configvaultInterfaces };
// third party scope
import * as yaml from 'yaml';
export { yaml };