aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/src/vite-env.d.ts
blob: dba1c8a8bb66c4437fbeb3835305b8d462300493 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/// <reference types="vite/client" />

interface ImportMetaEnv {
  readonly VITE_API_KEY: string;
  readonly VITE_CAN_UPDATE: string;
  readonly VITE_HAS_UPDATE: string;
  readonly VITE_QUERY_DEV: string;
}

interface ImportMeta {
  readonly env: ImportMetaEnv;
}