mirror of
https://github.com/iLay1678/i-tools.git
synced 2025-05-23 19:17:42 +08:00
15 lines
253 B
TypeScript
15 lines
253 B
TypeScript
/// <reference types="@cloudflare/workers-types/2023-07-01" />
|
|
|
|
declare module "h3" {
|
|
interface H3EventContext {
|
|
cf: CfProperties;
|
|
cloudflare: {
|
|
request: Request;
|
|
env: Env;
|
|
context: ExecutionContext;
|
|
};
|
|
}
|
|
}
|
|
|
|
export {};
|