21 lines
502 B
TypeScript
21 lines
502 B
TypeScript
// node native
|
|
import type * as http from 'http';
|
|
import type * as 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 { Socket as ClientSocket, connect as ClientIo } from 'socket.io-client';
|
|
|
|
export { socketIo };
|
|
export namespace socketIoClient {
|
|
export type Socket = ClientSocket;
|
|
export type connect = typeof ClientIo;
|
|
}
|