Files
llamactl/webui/src/vite-env.d.ts

14 lines
202 B
TypeScript

/// <reference types="vite/client" />
declare global {
interface ImportMetaEnv {
readonly VITE_APP_VERSION?: string
}
interface ImportMeta {
readonly env: ImportMetaEnv
}
}
export {}