aboutsummaryrefslogtreecommitdiff
path: root/src/env.d.ts
blob: 1381ce5fc8bb09c6324941553d5d7691b6706ecf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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
}