summaryrefslogtreecommitdiff
path: root/src/env.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/env.ts')
-rw-r--r--src/env.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/env.ts b/src/env.ts
new file mode 100644
index 0000000..a39f506
--- /dev/null
+++ b/src/env.ts
@@ -0,0 +1,7 @@
+export type Bindings = {
+ ASSETS: Fetcher;
+ URL?: string;
+ REDIRECT_ROOT?: string;
+};
+
+export type Variables = Record<string, never>;