/ worker-configuration.d.ts
worker-configuration.d.ts
 1  interface Env {
 2  	// Example binding to KV. Learn more at https://developers.cloudflare.com/workers/runtime-apis/kv/
 3  	// MY_KV_NAMESPACE: KVNamespace;
 4  	//
 5  	// Example binding to Durable Object. Learn more at https://developers.cloudflare.com/workers/runtime-apis/durable-objects/
 6  	// MY_DURABLE_OBJECT: DurableObjectNamespace;
 7  	//
 8  	// Example binding to R2. Learn more at https://developers.cloudflare.com/workers/runtime-apis/r2/
 9  	// MY_BUCKET: R2Bucket;
10  	//
11  	// Example binding to a Service. Learn more at https://developers.cloudflare.com/workers/runtime-apis/service-bindings/
12  	// MY_SERVICE: Fetcher;
13  	//
14  	// Example binding to a Queue. Learn more at https://developers.cloudflare.com/queues/javascript-apis/
15  	// MY_QUEUE: Queue;
16  }