2025-10-18 21:29:28 -04:00
|
|
|
/// <reference types="vite/client" />
|
|
|
|
|
|
|
|
|
|
declare module '*.vue' {
|
2026-06-19 17:00:57 -04:00
|
|
|
import type { DefineComponent } from 'vue';
|
|
|
|
|
const component: DefineComponent<{}, {}, any>;
|
|
|
|
|
export default component;
|
2025-10-18 21:29:28 -04:00
|
|
|
}
|
2025-10-19 21:35:02 -04:00
|
|
|
|
|
|
|
|
// Vite environment variables
|
|
|
|
|
interface ImportMetaEnv {
|
2026-06-19 17:00:57 -04:00
|
|
|
readonly VITE_API_URL?: string;
|
|
|
|
|
readonly DEV: boolean;
|
|
|
|
|
readonly PROD: boolean;
|
|
|
|
|
readonly VITEST: boolean;
|
2025-10-19 21:35:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface ImportMeta {
|
2026-06-19 17:00:57 -04:00
|
|
|
readonly env: ImportMetaEnv;
|
2025-10-19 21:35:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Global variables for automatic validation
|
|
|
|
|
declare global {
|
2026-06-19 17:00:57 -04:00
|
|
|
var __AUTO_VALIDATE__: boolean | undefined;
|
2025-10-19 21:35:02 -04:00
|
|
|
}
|