@cloudflare/workers-types 4.20230214.0 → 4.20230215.0

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.
@@ -279,6 +279,7 @@ declare const self: ServiceWorkerGlobalScope;
279
279
  declare const crypto: Crypto;
280
280
  declare const caches: CacheStorage;
281
281
  declare const scheduler: Scheduler;
282
+ declare interface TestController {}
282
283
  declare interface ExecutionContext {
283
284
  waitUntil(promise: Promise<any>): void;
284
285
  passThroughOnException(): void;
@@ -303,10 +304,16 @@ declare type ExportedHandlerQueueHandler<Env = unknown, Message = unknown> = (
303
304
  env: Env,
304
305
  ctx: ExecutionContext
305
306
  ) => void | Promise<void>;
307
+ declare type ExportedHandlerTestHandler<Env = unknown> = (
308
+ controller: TestController,
309
+ env: Env,
310
+ ctx: ExecutionContext
311
+ ) => void | Promise<void>;
306
312
  declare interface ExportedHandler<Env = unknown, QueueMessage = unknown> {
307
313
  fetch?: ExportedHandlerFetchHandler<Env>;
308
314
  trace?: ExportedHandlerTraceHandler<Env>;
309
315
  scheduled?: ExportedHandlerScheduledHandler<Env>;
316
+ test?: ExportedHandlerTestHandler<Env>;
310
317
  queue?: ExportedHandlerQueueHandler<Env, QueueMessage>;
311
318
  }
312
319
  declare interface StructuredSerializeOptions {
@@ -281,6 +281,7 @@ export declare const self: ServiceWorkerGlobalScope;
281
281
  export declare const crypto: Crypto;
282
282
  export declare const caches: CacheStorage;
283
283
  export declare const scheduler: Scheduler;
284
+ export interface TestController {}
284
285
  export interface ExecutionContext {
285
286
  waitUntil(promise: Promise<any>): void;
286
287
  passThroughOnException(): void;
@@ -305,10 +306,16 @@ export type ExportedHandlerQueueHandler<Env = unknown, Message = unknown> = (
305
306
  env: Env,
306
307
  ctx: ExecutionContext
307
308
  ) => void | Promise<void>;
309
+ export type ExportedHandlerTestHandler<Env = unknown> = (
310
+ controller: TestController,
311
+ env: Env,
312
+ ctx: ExecutionContext
313
+ ) => void | Promise<void>;
308
314
  export interface ExportedHandler<Env = unknown, QueueMessage = unknown> {
309
315
  fetch?: ExportedHandlerFetchHandler<Env>;
310
316
  trace?: ExportedHandlerTraceHandler<Env>;
311
317
  scheduled?: ExportedHandlerScheduledHandler<Env>;
318
+ test?: ExportedHandlerTestHandler<Env>;
312
319
  queue?: ExportedHandlerQueueHandler<Env, QueueMessage>;
313
320
  }
314
321
  export interface StructuredSerializeOptions {
@@ -279,6 +279,7 @@ declare const self: ServiceWorkerGlobalScope;
279
279
  declare const crypto: Crypto;
280
280
  declare const caches: CacheStorage;
281
281
  declare const scheduler: Scheduler;
282
+ declare interface TestController {}
282
283
  declare interface ExecutionContext {
283
284
  waitUntil(promise: Promise<any>): void;
284
285
  passThroughOnException(): void;
@@ -303,10 +304,16 @@ declare type ExportedHandlerQueueHandler<Env = unknown, Message = unknown> = (
303
304
  env: Env,
304
305
  ctx: ExecutionContext
305
306
  ) => void | Promise<void>;
307
+ declare type ExportedHandlerTestHandler<Env = unknown> = (
308
+ controller: TestController,
309
+ env: Env,
310
+ ctx: ExecutionContext
311
+ ) => void | Promise<void>;
306
312
  declare interface ExportedHandler<Env = unknown, QueueMessage = unknown> {
307
313
  fetch?: ExportedHandlerFetchHandler<Env>;
308
314
  trace?: ExportedHandlerTraceHandler<Env>;
309
315
  scheduled?: ExportedHandlerScheduledHandler<Env>;
316
+ test?: ExportedHandlerTestHandler<Env>;
310
317
  queue?: ExportedHandlerQueueHandler<Env, QueueMessage>;
311
318
  }
312
319
  declare interface StructuredSerializeOptions {
@@ -281,6 +281,7 @@ export declare const self: ServiceWorkerGlobalScope;
281
281
  export declare const crypto: Crypto;
282
282
  export declare const caches: CacheStorage;
283
283
  export declare const scheduler: Scheduler;
284
+ export interface TestController {}
284
285
  export interface ExecutionContext {
285
286
  waitUntil(promise: Promise<any>): void;
286
287
  passThroughOnException(): void;
@@ -305,10 +306,16 @@ export type ExportedHandlerQueueHandler<Env = unknown, Message = unknown> = (
305
306
  env: Env,
306
307
  ctx: ExecutionContext
307
308
  ) => void | Promise<void>;
309
+ export type ExportedHandlerTestHandler<Env = unknown> = (
310
+ controller: TestController,
311
+ env: Env,
312
+ ctx: ExecutionContext
313
+ ) => void | Promise<void>;
308
314
  export interface ExportedHandler<Env = unknown, QueueMessage = unknown> {
309
315
  fetch?: ExportedHandlerFetchHandler<Env>;
310
316
  trace?: ExportedHandlerTraceHandler<Env>;
311
317
  scheduled?: ExportedHandlerScheduledHandler<Env>;
318
+ test?: ExportedHandlerTestHandler<Env>;
312
319
  queue?: ExportedHandlerQueueHandler<Env, QueueMessage>;
313
320
  }
314
321
  export interface StructuredSerializeOptions {
@@ -282,6 +282,7 @@ declare const crypto: Crypto;
282
282
  declare const caches: CacheStorage;
283
283
  declare const scheduler: Scheduler;
284
284
  declare const navigator: Navigator;
285
+ declare interface TestController {}
285
286
  declare interface ExecutionContext {
286
287
  waitUntil(promise: Promise<any>): void;
287
288
  passThroughOnException(): void;
@@ -306,10 +307,16 @@ declare type ExportedHandlerQueueHandler<Env = unknown, Message = unknown> = (
306
307
  env: Env,
307
308
  ctx: ExecutionContext
308
309
  ) => void | Promise<void>;
310
+ declare type ExportedHandlerTestHandler<Env = unknown> = (
311
+ controller: TestController,
312
+ env: Env,
313
+ ctx: ExecutionContext
314
+ ) => void | Promise<void>;
309
315
  declare interface ExportedHandler<Env = unknown, QueueMessage = unknown> {
310
316
  fetch?: ExportedHandlerFetchHandler<Env>;
311
317
  trace?: ExportedHandlerTraceHandler<Env>;
312
318
  scheduled?: ExportedHandlerScheduledHandler<Env>;
319
+ test?: ExportedHandlerTestHandler<Env>;
313
320
  queue?: ExportedHandlerQueueHandler<Env, QueueMessage>;
314
321
  }
315
322
  declare interface StructuredSerializeOptions {
@@ -284,6 +284,7 @@ export declare const crypto: Crypto;
284
284
  export declare const caches: CacheStorage;
285
285
  export declare const scheduler: Scheduler;
286
286
  export declare const navigator: Navigator;
287
+ export interface TestController {}
287
288
  export interface ExecutionContext {
288
289
  waitUntil(promise: Promise<any>): void;
289
290
  passThroughOnException(): void;
@@ -308,10 +309,16 @@ export type ExportedHandlerQueueHandler<Env = unknown, Message = unknown> = (
308
309
  env: Env,
309
310
  ctx: ExecutionContext
310
311
  ) => void | Promise<void>;
312
+ export type ExportedHandlerTestHandler<Env = unknown> = (
313
+ controller: TestController,
314
+ env: Env,
315
+ ctx: ExecutionContext
316
+ ) => void | Promise<void>;
311
317
  export interface ExportedHandler<Env = unknown, QueueMessage = unknown> {
312
318
  fetch?: ExportedHandlerFetchHandler<Env>;
313
319
  trace?: ExportedHandlerTraceHandler<Env>;
314
320
  scheduled?: ExportedHandlerScheduledHandler<Env>;
321
+ test?: ExportedHandlerTestHandler<Env>;
315
322
  queue?: ExportedHandlerQueueHandler<Env, QueueMessage>;
316
323
  }
317
324
  export interface StructuredSerializeOptions {
@@ -282,6 +282,7 @@ declare const crypto: Crypto;
282
282
  declare const caches: CacheStorage;
283
283
  declare const scheduler: Scheduler;
284
284
  declare const navigator: Navigator;
285
+ declare interface TestController {}
285
286
  declare interface ExecutionContext {
286
287
  waitUntil(promise: Promise<any>): void;
287
288
  passThroughOnException(): void;
@@ -306,10 +307,16 @@ declare type ExportedHandlerQueueHandler<Env = unknown, Message = unknown> = (
306
307
  env: Env,
307
308
  ctx: ExecutionContext
308
309
  ) => void | Promise<void>;
310
+ declare type ExportedHandlerTestHandler<Env = unknown> = (
311
+ controller: TestController,
312
+ env: Env,
313
+ ctx: ExecutionContext
314
+ ) => void | Promise<void>;
309
315
  declare interface ExportedHandler<Env = unknown, QueueMessage = unknown> {
310
316
  fetch?: ExportedHandlerFetchHandler<Env>;
311
317
  trace?: ExportedHandlerTraceHandler<Env>;
312
318
  scheduled?: ExportedHandlerScheduledHandler<Env>;
319
+ test?: ExportedHandlerTestHandler<Env>;
313
320
  queue?: ExportedHandlerQueueHandler<Env, QueueMessage>;
314
321
  }
315
322
  declare interface StructuredSerializeOptions {
@@ -284,6 +284,7 @@ export declare const crypto: Crypto;
284
284
  export declare const caches: CacheStorage;
285
285
  export declare const scheduler: Scheduler;
286
286
  export declare const navigator: Navigator;
287
+ export interface TestController {}
287
288
  export interface ExecutionContext {
288
289
  waitUntil(promise: Promise<any>): void;
289
290
  passThroughOnException(): void;
@@ -308,10 +309,16 @@ export type ExportedHandlerQueueHandler<Env = unknown, Message = unknown> = (
308
309
  env: Env,
309
310
  ctx: ExecutionContext
310
311
  ) => void | Promise<void>;
312
+ export type ExportedHandlerTestHandler<Env = unknown> = (
313
+ controller: TestController,
314
+ env: Env,
315
+ ctx: ExecutionContext
316
+ ) => void | Promise<void>;
311
317
  export interface ExportedHandler<Env = unknown, QueueMessage = unknown> {
312
318
  fetch?: ExportedHandlerFetchHandler<Env>;
313
319
  trace?: ExportedHandlerTraceHandler<Env>;
314
320
  scheduled?: ExportedHandlerScheduledHandler<Env>;
321
+ test?: ExportedHandlerTestHandler<Env>;
315
322
  queue?: ExportedHandlerQueueHandler<Env, QueueMessage>;
316
323
  }
317
324
  export interface StructuredSerializeOptions {
@@ -282,6 +282,7 @@ declare const crypto: Crypto;
282
282
  declare const caches: CacheStorage;
283
283
  declare const scheduler: Scheduler;
284
284
  declare const navigator: Navigator;
285
+ declare interface TestController {}
285
286
  declare interface ExecutionContext {
286
287
  waitUntil(promise: Promise<any>): void;
287
288
  passThroughOnException(): void;
@@ -306,10 +307,16 @@ declare type ExportedHandlerQueueHandler<Env = unknown, Message = unknown> = (
306
307
  env: Env,
307
308
  ctx: ExecutionContext
308
309
  ) => void | Promise<void>;
310
+ declare type ExportedHandlerTestHandler<Env = unknown> = (
311
+ controller: TestController,
312
+ env: Env,
313
+ ctx: ExecutionContext
314
+ ) => void | Promise<void>;
309
315
  declare interface ExportedHandler<Env = unknown, QueueMessage = unknown> {
310
316
  fetch?: ExportedHandlerFetchHandler<Env>;
311
317
  trace?: ExportedHandlerTraceHandler<Env>;
312
318
  scheduled?: ExportedHandlerScheduledHandler<Env>;
319
+ test?: ExportedHandlerTestHandler<Env>;
313
320
  queue?: ExportedHandlerQueueHandler<Env, QueueMessage>;
314
321
  }
315
322
  declare interface StructuredSerializeOptions {
@@ -284,6 +284,7 @@ export declare const crypto: Crypto;
284
284
  export declare const caches: CacheStorage;
285
285
  export declare const scheduler: Scheduler;
286
286
  export declare const navigator: Navigator;
287
+ export interface TestController {}
287
288
  export interface ExecutionContext {
288
289
  waitUntil(promise: Promise<any>): void;
289
290
  passThroughOnException(): void;
@@ -308,10 +309,16 @@ export type ExportedHandlerQueueHandler<Env = unknown, Message = unknown> = (
308
309
  env: Env,
309
310
  ctx: ExecutionContext
310
311
  ) => void | Promise<void>;
312
+ export type ExportedHandlerTestHandler<Env = unknown> = (
313
+ controller: TestController,
314
+ env: Env,
315
+ ctx: ExecutionContext
316
+ ) => void | Promise<void>;
311
317
  export interface ExportedHandler<Env = unknown, QueueMessage = unknown> {
312
318
  fetch?: ExportedHandlerFetchHandler<Env>;
313
319
  trace?: ExportedHandlerTraceHandler<Env>;
314
320
  scheduled?: ExportedHandlerScheduledHandler<Env>;
321
+ test?: ExportedHandlerTestHandler<Env>;
315
322
  queue?: ExportedHandlerQueueHandler<Env, QueueMessage>;
316
323
  }
317
324
  export interface StructuredSerializeOptions {
@@ -286,6 +286,7 @@ declare const crypto: Crypto;
286
286
  declare const caches: CacheStorage;
287
287
  declare const scheduler: Scheduler;
288
288
  declare const navigator: Navigator;
289
+ declare interface TestController {}
289
290
  declare interface ExecutionContext {
290
291
  waitUntil(promise: Promise<any>): void;
291
292
  passThroughOnException(): void;
@@ -310,10 +311,16 @@ declare type ExportedHandlerQueueHandler<Env = unknown, Message = unknown> = (
310
311
  env: Env,
311
312
  ctx: ExecutionContext
312
313
  ) => void | Promise<void>;
314
+ declare type ExportedHandlerTestHandler<Env = unknown> = (
315
+ controller: TestController,
316
+ env: Env,
317
+ ctx: ExecutionContext
318
+ ) => void | Promise<void>;
313
319
  declare interface ExportedHandler<Env = unknown, QueueMessage = unknown> {
314
320
  fetch?: ExportedHandlerFetchHandler<Env>;
315
321
  trace?: ExportedHandlerTraceHandler<Env>;
316
322
  scheduled?: ExportedHandlerScheduledHandler<Env>;
323
+ test?: ExportedHandlerTestHandler<Env>;
317
324
  queue?: ExportedHandlerQueueHandler<Env, QueueMessage>;
318
325
  }
319
326
  declare interface StructuredSerializeOptions {
@@ -288,6 +288,7 @@ export declare const crypto: Crypto;
288
288
  export declare const caches: CacheStorage;
289
289
  export declare const scheduler: Scheduler;
290
290
  export declare const navigator: Navigator;
291
+ export interface TestController {}
291
292
  export interface ExecutionContext {
292
293
  waitUntil(promise: Promise<any>): void;
293
294
  passThroughOnException(): void;
@@ -312,10 +313,16 @@ export type ExportedHandlerQueueHandler<Env = unknown, Message = unknown> = (
312
313
  env: Env,
313
314
  ctx: ExecutionContext
314
315
  ) => void | Promise<void>;
316
+ export type ExportedHandlerTestHandler<Env = unknown> = (
317
+ controller: TestController,
318
+ env: Env,
319
+ ctx: ExecutionContext
320
+ ) => void | Promise<void>;
315
321
  export interface ExportedHandler<Env = unknown, QueueMessage = unknown> {
316
322
  fetch?: ExportedHandlerFetchHandler<Env>;
317
323
  trace?: ExportedHandlerTraceHandler<Env>;
318
324
  scheduled?: ExportedHandlerScheduledHandler<Env>;
325
+ test?: ExportedHandlerTestHandler<Env>;
319
326
  queue?: ExportedHandlerQueueHandler<Env, QueueMessage>;
320
327
  }
321
328
  export interface StructuredSerializeOptions {
@@ -286,6 +286,7 @@ declare const crypto: Crypto;
286
286
  declare const caches: CacheStorage;
287
287
  declare const scheduler: Scheduler;
288
288
  declare const navigator: Navigator;
289
+ declare interface TestController {}
289
290
  declare interface ExecutionContext {
290
291
  waitUntil(promise: Promise<any>): void;
291
292
  passThroughOnException(): void;
@@ -310,10 +311,16 @@ declare type ExportedHandlerQueueHandler<Env = unknown, Message = unknown> = (
310
311
  env: Env,
311
312
  ctx: ExecutionContext
312
313
  ) => void | Promise<void>;
314
+ declare type ExportedHandlerTestHandler<Env = unknown> = (
315
+ controller: TestController,
316
+ env: Env,
317
+ ctx: ExecutionContext
318
+ ) => void | Promise<void>;
313
319
  declare interface ExportedHandler<Env = unknown, QueueMessage = unknown> {
314
320
  fetch?: ExportedHandlerFetchHandler<Env>;
315
321
  trace?: ExportedHandlerTraceHandler<Env>;
316
322
  scheduled?: ExportedHandlerScheduledHandler<Env>;
323
+ test?: ExportedHandlerTestHandler<Env>;
317
324
  queue?: ExportedHandlerQueueHandler<Env, QueueMessage>;
318
325
  }
319
326
  declare interface StructuredSerializeOptions {
@@ -288,6 +288,7 @@ export declare const crypto: Crypto;
288
288
  export declare const caches: CacheStorage;
289
289
  export declare const scheduler: Scheduler;
290
290
  export declare const navigator: Navigator;
291
+ export interface TestController {}
291
292
  export interface ExecutionContext {
292
293
  waitUntil(promise: Promise<any>): void;
293
294
  passThroughOnException(): void;
@@ -312,10 +313,16 @@ export type ExportedHandlerQueueHandler<Env = unknown, Message = unknown> = (
312
313
  env: Env,
313
314
  ctx: ExecutionContext
314
315
  ) => void | Promise<void>;
316
+ export type ExportedHandlerTestHandler<Env = unknown> = (
317
+ controller: TestController,
318
+ env: Env,
319
+ ctx: ExecutionContext
320
+ ) => void | Promise<void>;
315
321
  export interface ExportedHandler<Env = unknown, QueueMessage = unknown> {
316
322
  fetch?: ExportedHandlerFetchHandler<Env>;
317
323
  trace?: ExportedHandlerTraceHandler<Env>;
318
324
  scheduled?: ExportedHandlerScheduledHandler<Env>;
325
+ test?: ExportedHandlerTestHandler<Env>;
319
326
  queue?: ExportedHandlerQueueHandler<Env, QueueMessage>;
320
327
  }
321
328
  export interface StructuredSerializeOptions {
package/index.d.ts CHANGED
@@ -279,6 +279,7 @@ declare const self: ServiceWorkerGlobalScope;
279
279
  declare const crypto: Crypto;
280
280
  declare const caches: CacheStorage;
281
281
  declare const scheduler: Scheduler;
282
+ declare interface TestController {}
282
283
  declare interface ExecutionContext {
283
284
  waitUntil(promise: Promise<any>): void;
284
285
  passThroughOnException(): void;
@@ -303,10 +304,16 @@ declare type ExportedHandlerQueueHandler<Env = unknown, Message = unknown> = (
303
304
  env: Env,
304
305
  ctx: ExecutionContext
305
306
  ) => void | Promise<void>;
307
+ declare type ExportedHandlerTestHandler<Env = unknown> = (
308
+ controller: TestController,
309
+ env: Env,
310
+ ctx: ExecutionContext
311
+ ) => void | Promise<void>;
306
312
  declare interface ExportedHandler<Env = unknown, QueueMessage = unknown> {
307
313
  fetch?: ExportedHandlerFetchHandler<Env>;
308
314
  trace?: ExportedHandlerTraceHandler<Env>;
309
315
  scheduled?: ExportedHandlerScheduledHandler<Env>;
316
+ test?: ExportedHandlerTestHandler<Env>;
310
317
  queue?: ExportedHandlerQueueHandler<Env, QueueMessage>;
311
318
  }
312
319
  declare interface StructuredSerializeOptions {
package/index.ts CHANGED
@@ -281,6 +281,7 @@ export declare const self: ServiceWorkerGlobalScope;
281
281
  export declare const crypto: Crypto;
282
282
  export declare const caches: CacheStorage;
283
283
  export declare const scheduler: Scheduler;
284
+ export interface TestController {}
284
285
  export interface ExecutionContext {
285
286
  waitUntil(promise: Promise<any>): void;
286
287
  passThroughOnException(): void;
@@ -305,10 +306,16 @@ export type ExportedHandlerQueueHandler<Env = unknown, Message = unknown> = (
305
306
  env: Env,
306
307
  ctx: ExecutionContext
307
308
  ) => void | Promise<void>;
309
+ export type ExportedHandlerTestHandler<Env = unknown> = (
310
+ controller: TestController,
311
+ env: Env,
312
+ ctx: ExecutionContext
313
+ ) => void | Promise<void>;
308
314
  export interface ExportedHandler<Env = unknown, QueueMessage = unknown> {
309
315
  fetch?: ExportedHandlerFetchHandler<Env>;
310
316
  trace?: ExportedHandlerTraceHandler<Env>;
311
317
  scheduled?: ExportedHandlerScheduledHandler<Env>;
318
+ test?: ExportedHandlerTestHandler<Env>;
312
319
  queue?: ExportedHandlerQueueHandler<Env, QueueMessage>;
313
320
  }
314
321
  export interface StructuredSerializeOptions {
package/oldest/index.d.ts CHANGED
@@ -279,6 +279,7 @@ declare const self: ServiceWorkerGlobalScope;
279
279
  declare const crypto: Crypto;
280
280
  declare const caches: CacheStorage;
281
281
  declare const scheduler: Scheduler;
282
+ declare interface TestController {}
282
283
  declare interface ExecutionContext {
283
284
  waitUntil(promise: Promise<any>): void;
284
285
  passThroughOnException(): void;
@@ -303,10 +304,16 @@ declare type ExportedHandlerQueueHandler<Env = unknown, Message = unknown> = (
303
304
  env: Env,
304
305
  ctx: ExecutionContext
305
306
  ) => void | Promise<void>;
307
+ declare type ExportedHandlerTestHandler<Env = unknown> = (
308
+ controller: TestController,
309
+ env: Env,
310
+ ctx: ExecutionContext
311
+ ) => void | Promise<void>;
306
312
  declare interface ExportedHandler<Env = unknown, QueueMessage = unknown> {
307
313
  fetch?: ExportedHandlerFetchHandler<Env>;
308
314
  trace?: ExportedHandlerTraceHandler<Env>;
309
315
  scheduled?: ExportedHandlerScheduledHandler<Env>;
316
+ test?: ExportedHandlerTestHandler<Env>;
310
317
  queue?: ExportedHandlerQueueHandler<Env, QueueMessage>;
311
318
  }
312
319
  declare interface StructuredSerializeOptions {
package/oldest/index.ts CHANGED
@@ -281,6 +281,7 @@ export declare const self: ServiceWorkerGlobalScope;
281
281
  export declare const crypto: Crypto;
282
282
  export declare const caches: CacheStorage;
283
283
  export declare const scheduler: Scheduler;
284
+ export interface TestController {}
284
285
  export interface ExecutionContext {
285
286
  waitUntil(promise: Promise<any>): void;
286
287
  passThroughOnException(): void;
@@ -305,10 +306,16 @@ export type ExportedHandlerQueueHandler<Env = unknown, Message = unknown> = (
305
306
  env: Env,
306
307
  ctx: ExecutionContext
307
308
  ) => void | Promise<void>;
309
+ export type ExportedHandlerTestHandler<Env = unknown> = (
310
+ controller: TestController,
311
+ env: Env,
312
+ ctx: ExecutionContext
313
+ ) => void | Promise<void>;
308
314
  export interface ExportedHandler<Env = unknown, QueueMessage = unknown> {
309
315
  fetch?: ExportedHandlerFetchHandler<Env>;
310
316
  trace?: ExportedHandlerTraceHandler<Env>;
311
317
  scheduled?: ExportedHandlerScheduledHandler<Env>;
318
+ test?: ExportedHandlerTestHandler<Env>;
312
319
  queue?: ExportedHandlerQueueHandler<Env, QueueMessage>;
313
320
  }
314
321
  export interface StructuredSerializeOptions {
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": "4.20230214.0"
10
+ "version": "4.20230215.0"
11
11
  }