blog-minerva-juppiter

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 0c2c3d6083de6a81bfd624234273827a92310ecc
parent 4e637323c1dfa6eafdcad04e8a6cc981c409a397
Author: minerva-jupiter <ryouturn@gmail.com>
Date:   Sun, 30 Mar 2025 21:57:44 +0900

ready for cloudflare pages

Diffstat:
Msrc/app.d.ts | 9+++++++++
1 file changed, 9 insertions(+), 0 deletions(-)

diff --git a/src/app.d.ts b/src/app.d.ts @@ -7,6 +7,15 @@ declare global { // interface PageData {} // interface PageState {} // interface Platform {} + interface Platform { + env: { + COUNTER: DurableObjectNamespace; + }; + context: { + waitUntil(promise: Promise<any>): void; + }; + caches: CacheStorage & { default: Cache } + } } }