You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bazarr/frontend/src/vite-env.d.ts

13 lines
264 B

/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_API_KEY: string;
readonly VITE_CAN_UPDATE: string;
readonly VITE_HAS_UPDATE: string;
readonly VITE_QUERY_DEV: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}