diff options
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 +} |
