diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2024-02-07 18:06:04 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2024-02-07 18:06:04 -0500 |
| commit | b21f48d0a0b3c6d32b8eb9a3b5c84f8ff3dbc136 (patch) | |
| tree | c6d9b3da6a5398d6ba4456586785750969a5406e /src/env.d.ts | |
| parent | ccd810f3e080ea2717772850647efb06df074c32 (diff) | |
| download | personal-website-b21f48d0a0b3c6d32b8eb9a3b5c84f8ff3dbc136.tar.gz personal-website-b21f48d0a0b3c6d32b8eb9a3b5c84f8ff3dbc136.tar.bz2 personal-website-b21f48d0a0b3c6d32b8eb9a3b5c84f8ff3dbc136.zip | |
Using supabase as the main db
Diffstat (limited to 'src/env.d.ts')
| -rw-r--r-- | src/env.d.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/env.d.ts b/src/env.d.ts index acef35f..1381ce5 100644 --- a/src/env.d.ts +++ b/src/env.d.ts @@ -1,2 +1,13 @@ /// <reference path="../.astro/types.d.ts" /> /// <reference types="astro/client" /> +declare module 'sanitize-html'; +declare module 'dompurify'; + +interface ImportMetaEnv { + readonly PUBLIC_SUPABASE_URL: string + readonly PUBLIC_SUPABASE_ANON_KEY: string +} + +interface ImportMeta { + readonly env: ImportMetaEnv +} |
