UNPKG

232 BTypeScriptView Raw
1declare module "ws" {
2 export interface WebSocker {
3 send(): void;
4 onopen: () => void;
5 onmessage: (messageEvent: { target: any, type: string, data: string }) => void
6 }
7
8 export default WebSocket;
9}
10