smartsocket/ts/smartsocket.pluginstyped.ts
2022-01-18 17:10:46 +01:00

17 lines
361 B
TypeScript

// 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';
import type socketIoClient from 'socket.io-client';
export { socketIoClient, socketIo };