aboutsummaryrefslogtreecommitdiffstats
path: root/packages/main/types/importMeta.d.ts
blob: efcf48a7eb9fa57cc9853af9909f63e48637dd8b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
interface ImportMeta {
  env: {
    DEV: boolean;
    MODE: string;
    PROD: boolean;
    VITE_DEV_SERVER_URL: string;
    GIT_SHA: string;
    GIT_BRANCH: string;
    BUILD_DATE: number;
  };
}