aboutsummaryrefslogtreecommitdiffstats
path: root/packages/main/types/importMeta.d.ts
blob: e422c30f69cd5dbbcbe53d7e84b4d0555d1d467c (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;
  }
}