mirror of
https://github.com/koel/koel
synced 2024-11-28 15:00:42 +00:00
10 lines
168 B
TypeScript
10 lines
168 B
TypeScript
|
/// <reference types="vite/client" />
|
||
|
|
||
|
interface ImportMetaEnv {
|
||
|
readonly VITE_KOEL_ENV: 'demo' | undefined
|
||
|
}
|
||
|
|
||
|
interface ImportMeta {
|
||
|
readonly env: ImportMetaEnv
|
||
|
}
|