typedelectron/ts/plugins.ts
2023-12-06 02:16:36 +01:00

29 lines
454 B
TypeScript

// 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,
}