Workflow type-generation improvement
Hey guys, I'm working with Workflow and expect to have a little stricter type support.
Could you take a look and share some thought with this PR?
https://github.com/cloudflare/workers-sdk/pull/9705
Thanks a lot.
GitHub
feat(type-generation): improve type generation for workflow by hien...
Fixes #9436
Make Workflow type generation stricter with generateImportSpecifier (thanks to @ottomated #6259).
Before:
interface Env {
MY_WORKFLOW: Workflow;
}
After:
interface Env {
MY_WORKFLOW: ...
0 Replies