(
url: string,
options?: {
readonly disablePing?: boolean
}
)
| 460 | * @category layers |
| 461 | */ |
| 462 | export const layerWebSocketBrowser = ( |
| 463 | url: string, |
| 464 | options?: { |
| 465 | readonly disablePing?: boolean |
| 466 | } |
| 467 | ): Layer.Layer<never, never, EventLog> => |
| 468 | layerWebSocket(url, options).pipe( |
| 469 | Layer.provide([layerSubtle, Socket.layerWebSocketConstructorGlobal]) |
| 470 | ) |
nothing calls this directly
no test coverage detected
searching dependent graphs…