18 lines
429 B
TypeScript
18 lines
429 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_BUILD_CHANNEL?: "dev" | "main" | "release" | "local";
|
|
readonly VITE_BUILD_COMMIT?: string;
|
|
readonly VITE_DESKTOP_SERVER_URL?: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|
|
|
|
declare module "*.vue" {
|
|
import type { DefineComponent } from "vue";
|
|
const component: DefineComponent<{}, {}, any>;
|
|
export default component;
|
|
}
|