@cloudflare/workers-types 5.20260807.2 → 5.20260808.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/index.d.ts +1 -0
  2. package/index.ts +1 -0
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -505,6 +505,7 @@ interface ExecutionContext<Props = unknown> {
505
505
  cache?: CacheContext;
506
506
  readonly access?: CloudflareAccessContext;
507
507
  tracing: Tracing;
508
+ abort(reason?: any): void;
508
509
  }
509
510
  type ExportedHandlerFetchHandler<
510
511
  Env = unknown,
package/index.ts CHANGED
@@ -507,6 +507,7 @@ export interface ExecutionContext<Props = unknown> {
507
507
  cache?: CacheContext;
508
508
  readonly access?: CloudflareAccessContext;
509
509
  tracing: Tracing;
510
+ abort(reason?: any): void;
510
511
  }
511
512
  export type ExportedHandlerFetchHandler<
512
513
  Env = unknown,
package/package.json CHANGED
@@ -7,5 +7,5 @@
7
7
  },
8
8
  "author": "Cloudflare Workers DevProd Team <workers-devprod@cloudflare.com> (https://workers.cloudflare.com)",
9
9
  "license": "MIT OR Apache-2.0",
10
- "version": "5.20260807.2"
10
+ "version": "5.20260808.1"
11
11
  }