@aimee-blue/ab-service-kit
Version:
Aimee Blue Service Template
18 lines (12 loc) • 487 B
text/typescript
import WebSocket from 'ws';
import * as http from 'http';
import * as https from 'https';
export const SOCKET_COMPLETE_WARNING_TIMEOUT = 5000;
export const SOCKET_CLOSE_WAIT_TIMEOUT = 7500;
export type SocketWithInfo = WebSocket & { id: string; closingByKit: boolean };
export type MessageWithInfo = http.IncomingMessage & { id: string };
export type Server = http.Server | https.Server;
export type SocketHandler = (
socket: SocketWithInfo,
request: MessageWithInfo
) => void;