summaryrefslogtreecommitdiff
path: root/src/types
diff options
context:
space:
mode:
authorElizabeth Hunt <me@liz.coffee>2025-12-14 16:14:29 -0800
committerElizabeth Hunt <me@liz.coffee>2025-12-14 16:17:29 -0800
commit8ec712c8c884110600954860c21f58107455cfdc (patch)
tree5e5b16ec8b0a1d15d58beae5bc8a7fd5285c6d0e /src/types
parentdb0d9b80b4412a46cae0e58997f4baa7213948e3 (diff)
downloadadelie-8ec712c8c884110600954860c21f58107455cfdc.tar.gz
adelie-8ec712c8c884110600954860c21f58107455cfdc.zip
Move to typescript
Diffstat (limited to 'src/types')
-rw-r--r--src/types/global.d.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/types/global.d.ts b/src/types/global.d.ts
new file mode 100644
index 0000000..21aec91
--- /dev/null
+++ b/src/types/global.d.ts
@@ -0,0 +1,7 @@
+declare global {
+ interface Window {
+ ASSET_BASE?: string;
+ }
+}
+
+export {};