(options?: StreamOptions)
| 597 | * @since 4.0.0 |
| 598 | */ |
| 599 | export const layerNdjsonWith = (options?: StreamOptions): Layer.Layer<RpcSerialization> => |
| 600 | Layer.succeed(RpcSerialization)(makeNdjson(options)) |
| 601 | |
| 602 | /** |
| 603 | * RPC serialization layer that uses JSON-RPC for serialization. |
nothing calls this directly
no test coverage detected