Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve type inference for workflows defied from an interface
with this commit it is now possible to init a workflow client by defining an interface manually. For example: ``` type MyWorkflow = { run(ctx: unknown, arg: string): Promise<string>; } ingress.workflowClient<MyWorkflow>( { ... }, theKey).submitWorkflow("hi") ```
- Loading branch information