aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/types/ImportMeta.d.ts
blob: 096f088bd4a56db5b88fac879de9c8cc605e65a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Copyright (c) 2019-present, Yuxi (Evan) You and Vite contributors
 * Copyright (c) 2021-2023 The Refinery Authors <https://refinery.tools/>
 *
 * SPDX-License-Identifier: MIT
 */

interface ImportMeta {
  env: {
    BASE_URL: string;
    DEV: boolean;
    MODE: string;
    PROD: boolean;
    VITE_PACKAGE_NAME: string;
    VITE_PACKAGE_VERSION: string;
  };
}