| 8 | * Learn more at https://developers.cloudflare.com/workers/ |
| 9 | */ |
| 10 | export interface Env { |
| 11 | // Example binding to KV. Learn more at https://developers.cloudflare.com/workers/runtime-apis/kv/ |
| 12 | // MY_KV_NAMESPACE: KVNamespace; |
| 13 | // |
| 14 | // Example binding to Durable Object. Learn more at https://developers.cloudflare.com/workers/runtime-apis/durable-objects/ |
| 15 | // MY_DURABLE_OBJECT: DurableObjectNamespace; |
| 16 | // |
| 17 | // Example binding to R2. Learn more at https://developers.cloudflare.com/workers/runtime-apis/r2/ |
| 18 | // MY_BUCKET: R2Bucket; |
| 19 | } |
| 20 | |
| 21 | // clear previous cache |
| 22 | ;(async (cache) => { |
nothing calls this directly
no outgoing calls
no test coverage detected