summaryrefslogtreecommitdiff
path: root/src/env.ts
diff options
context:
space:
mode:
authorseth <[email protected]>2023-11-11 05:51:13 -0500
committerseth <[email protected]>2023-11-11 05:54:16 -0500
commit70edf4c616e59a8e83e7ca7faf9faefd6e0b817c (patch)
tree353b1b397a8a57c462bf6eb5ccee46b6ac85f35f /src/env.ts
initial commit
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>;