Skip to content
Snippets Groups Projects
vite-env.d.ts 254 B
Newer Older
Grant's avatar
Grant committed
/// <reference types="vite/client" />

interface ImportMetaEnv {
  readonly VITE_INCLUDE_EVENT_INFO: boolean;
Grant's avatar
Grant committed
}

interface ImportMeta {
  readonly env: ImportMetaEnv;
}

declare const __COMMIT_HASH__: string;
Grant's avatar
Grant committed
declare const __SENTRY_DSN__: string | null;