typedelectron/ts/plugins.ts

29 lines
454 B
TypeScript
Raw Normal View History

2023-12-06 01:16:36 +00:00
// node native
import * as path from 'path';
export {
path,
}
// @push.rocks scope
import * as smartpath from '@push.rocks/smartpath';
export {
smartpath,
}
// @api.global scope
import * as typedrequest from '@api.global/typedrequest';
import * as typedrequestInterfaces from '@api.global/typedrequest-interfaces';
export {
typedrequest,
typedrequestInterfaces,
}
// third party
import * as electron from 'electron';
export {
electron,
}