Files
plex-playlist/frontend/env.d.ts
Cliff Hill 8aa8d41e8a
Some checks failed
CI/CD Pipeline / Backend Tests (Python) (push) Has been cancelled
CI/CD Pipeline / Frontend Tests (TypeScript/Vue) (push) Has been cancelled
CI/CD Pipeline / Integration Tests (push) Has been cancelled
Did some things, made more improvements.
Signed-off-by: Cliff Hill <xlorep@darkhelm.org>
2025-10-19 21:35:02 -04:00

25 lines
520 B
TypeScript

/// <reference types="vite/client" />
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}
// Vite environment variables
interface ImportMetaEnv {
readonly VITE_API_URL?: string
readonly DEV: boolean
readonly PROD: boolean
readonly VITEST: boolean
}
interface ImportMeta {
readonly env: ImportMetaEnv
}
// Global variables for automatic validation
declare global {
var __AUTO_VALIDATE__: boolean | undefined
}