aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/types/ImportMeta.d.ts
blob: f5a32ef139fa1adbf6bf61c7259c219cb74bbeae (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 OR EPL-2.0
 */

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