| 161 | } |
| 162 | |
| 163 | interface WebSocketStream { |
| 164 | closed: Promise<WebSocketCloseInfo> |
| 165 | opened: Promise<{ |
| 166 | extensions: string |
| 167 | protocol: string |
| 168 | readable: ReadableStream |
| 169 | writable: WritableStream |
| 170 | }> |
| 171 | url: string |
| 172 | |
| 173 | close(options?: Partial<WebSocketCloseInfo>): void |
| 174 | } |
| 175 | |
| 176 | export declare const WebSocketStream: { |
| 177 | prototype: WebSocketStream |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…