### Describe the solution When you have durable objects defined and run `wrangler types` then the following strict types will be generated in `worker-configuration.d.ts` ```ts declare namespace Cloudflare { interface Env { MY_DURABLE_OBJECT: DurableObjectNamespace<import("./workers/my-script").MyDurableObject>; ... } } ``` When a workflow is defined the generated type is: ```ts declare namespace Cloudflare { interface Env { MY_WORKFLOW: Workflow; ... } } ``` It would be really helpful to have something akin to this instead: ```ts declare namespace Cloudflare { interface Env { MY_WORKFLOW: Workflow<MyWorkflowParams>; // or MY_WORKFLOW: import("./workers/my-script").MyWorkflow; } } ```