smartmail/ts/smartmail.plugins.ts

14 lines
429 B
TypeScript
Raw Normal View History

2020-06-18 21:04:52 +00:00
// node native scope
import * as path from 'path';
2022-08-07 09:38:07 +00:00
export { path };
2020-06-18 21:04:52 +00:00
// pushrocks scope
2020-06-18 15:34:05 +00:00
import * as smartdns from '@pushrocks/smartdns';
2019-10-26 21:45:35 +00:00
import * as smartfile from '@pushrocks/smartfile';
import * as smartmustache from '@pushrocks/smartmustache';
2022-08-07 09:38:07 +00:00
import * as smartpath from '@pushrocks/smartpath';
2020-06-18 21:04:52 +00:00
import * as smartrequest from '@pushrocks/smartrequest';
2019-10-26 21:45:35 +00:00
2022-08-07 09:38:07 +00:00
export { smartdns, smartfile, smartmustache, smartpath, smartrequest };