Initial commit (by create-cloudflare CLI)

This commit is contained in:
J-onasJones 2023-09-14 18:58:13 +02:00
commit 58a42872a0
1745 changed files with 741893 additions and 0 deletions

17
node_modules/wrangler/templates/facade.d.ts generated vendored Normal file
View file

@ -0,0 +1,17 @@
declare module "__ENTRY_POINT__" {
import type { Middleware } from "./middleware/common";
const worker: ExportedHandler & {
middleware?: Middleware[];
envWrappers: ((env: Record<string, unknown>) => Record<string, unknown>)[];
};
export default worker;
}
declare module "__KV_ASSET_HANDLER__" {
export * from "@cloudflare/kv-asset-handler";
}
declare module "__STATIC_CONTENT_MANIFEST" {
const manifest: string;
export default manifest;
}