(payload: any)
| 279 | } |
| 280 | ): Workflow<Name, Payload extends Schema.Struct.Fields ? Schema.Struct<Payload> : Payload, Success, Error> => { |
| 281 | const makeExecutionId = (payload: any) => makeHashDigest(`${options.name}-${options.idempotencyKey(payload)}`) |
| 282 | const self: Workflow<Name, any, Success, Error> = { |
| 283 | [TypeId]: TypeId, |
| 284 | name: options.name, |
no test coverage detected