smartsocket/ts/smartsocket.pluginstyped.ts

17 lines
361 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';
2020-09-29 18:58:09 +00:00
export { http, https };
2020-09-29 17:21:08 +00:00
// pushrocks scope
import type * as smartexpress from '@pushrocks/smartexpress';
2020-09-29 18:58:09 +00:00
export { smartexpress };
2020-09-29 17:21:08 +00:00
// third party scope
import type socketIo from 'socket.io';
2020-09-29 18:58:09 +00:00
import type socketIoClient from 'socket.io-client';
2020-09-29 17:21:08 +00:00
2022-01-18 16:10:46 +00:00
export { socketIoClient, socketIo };