smartsocket/ts/smartsocket.pluginstyped.ts

21 lines
299 B
TypeScript
Raw Normal View History

2020-09-29 17:21:08 +00:00
// node native
import type http from 'http';
import type https from 'https';
export {
http,
https
};
// pushrocks scope
import type * as smartexpress from '@pushrocks/smartexpress';
export {
smartexpress
};
// third party scope
import type socketIo from 'socket.io';
export { socketIo };