DurableObjectNamespace losing its type?
I have a
I also have
worker-configuration.d.ts that looks like this:I also have
"types": ["@remix-run/cloudflare", "@cloudflare/workers-types"], in my tsconfig.json so that Env is available everywhere in my app. However, Env["CHATSTORE"] shows up as DurableObjectNamespace<any> everywhere, instead of DurableObjectNamespace<ChatStore>. How do I get that type to not devolve to any?