releases.shpreview

Dated type entrypoints removed; use wrangler types instead

1 enhancementThis release1 enhancementImprovements to existing featuresAI-tallied from the release notes
From the original release noteView original ↗

We have released version 5 of @cloudflare/workers-types. This release simplifies the package to expose only the latest runtime types.

We still recommend that you generate types for your Worker using wrangler types, but if you want to use the package directly, you can install it with your package manager of choice:

<span>npm</span><span> i -D @cloudflare/workers-types@latest</span>
<span>yarn</span><span> add -D @cloudflare/workers-types@latest</span>
<span>pnpm</span><span> add -D @cloudflare/workers-types@latest</span>
<span>bun</span><span> add -d @cloudflare/workers-types@latest</span>

The package now exposes two entrypoints:

  • @cloudflare/workers-types reflects the latest compatibility date, using the latest stable compatibility flags.
  • @cloudflare/workers-types/experimental reflects APIs behind experimental compatibility flags.

The dated entrypoints, such as @cloudflare/workers-types/2022-11-30 and @cloudflare/workers-types/2023-03-01, are removed. With runtime type generation in Wrangler v4, you can generate these with the wrangler types command to create types locked to your Worker's compatibility date.

For more information, refer to TypeScript language support.

Fetched July 3, 2026

Dated type entrypoints removed; use wrangler types instead… — releases.sh