(error: E)
| 114 | * accumulated thus far. |
| 115 | */ |
| 116 | export const StreamFailureChunk = <E extends S.Top>(error: E) => |
| 117 | S.Struct({ _tag: S.Literal("error"), error, metadata: CommandMetaData }) |
| 118 | |
| 119 | export type StreamFailureChunk<E> = { readonly _tag: "error"; readonly error: E; readonly metadata: CommandMetaData } |
| 120 |
no outgoing calls
no test coverage detected
searching dependent graphs…