21 lines
493 B
TypeScript
21 lines
493 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2020 Stalwart Labs LLC <[email protected]>
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-SEL
|
|
*/
|
|
|
|
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_API_BASE_URL: string;
|
|
readonly VITE_OAUTH_CLIENT_ID: string;
|
|
readonly VITE_ACCESS_TOKEN: string;
|
|
readonly VITE_OAUTH_SCOPES: string;
|
|
readonly VITE_DEBUG_JMAP?: string;
|
|
readonly VITE_DEBUG_FORMS?: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|