This commit is contained in:
iLay
2024-12-06 03:20:18 +08:00
parent 941b1b64a4
commit 64df57e1a8
33 changed files with 17209 additions and 4284 deletions

14
env.d.ts vendored Normal file
View File

@ -0,0 +1,14 @@
/// <reference types="@cloudflare/workers-types/2023-07-01" />
declare module "h3" {
interface H3EventContext {
cf: CfProperties;
cloudflare: {
request: Request;
env: Env;
context: ExecutionContext;
};
}
}
export {};