(workflow: Workflow.Any)
| 205 | } |
| 206 | |
| 207 | const makeResultCodec = (workflow: Workflow.Any) => |
| 208 | S.fromJsonString(S.toCodecJson(Workflow.Result({ success: workflow.successSchema, error: workflow.errorSchema }))) |
| 209 | const resultCodecCache = new Map<string, ReturnType<typeof makeResultCodec>>() |
| 210 | const resultCodecFor = (workflow: Workflow.Any) => { |
| 211 | let c = resultCodecCache.get(workflow._tag) |
no test coverage detected
searching dependent graphs…