forked from fluidd-core/fluidd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.d.ts
More file actions
28 lines (23 loc) · 645 Bytes
/
env.d.ts
File metadata and controls
28 lines (23 loc) · 645 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/// <reference types="vite/client" />
/// <reference types="vitest/globals" />
/// <reference types="vuetify" />
/// <reference types="vue-meta" />
/// <reference types="vite-plugin-pwa/client" />
declare module '*.yaml' {
const data: unknown
export default data
}
declare module '@/locales/*.yaml' {
import type { LocaleMessageObject } from 'vue-i18n'
const data: LocaleMessageObject
export default data
}
interface ImportMetaEnv {
readonly VUE_APP_I18N_LOCALE?: string
readonly VUE_APP_I18N_FALLBACK_LOCALE?: string
readonly VERSION: string
readonly HASH: string
}
interface ImportMeta {
readonly env: ImportMetaEnv
}