0
Fork 0
mirror of https://codeberg.org/SafeTwitch/safetwitch.git synced 2024-12-21 21:03:00 -05:00
safetwitch/env.d.ts

22 lines
703 B
TypeScript
Raw Permalink Normal View History

2023-03-07 01:19:05 -05:00
/// <reference types="vite/client" />
2023-11-30 20:22:47 -05:00
// https://github.com/intlify/vue-i18n-next/issues/1403
/// <reference types="vite/client" />
/// <reference path="node_modules/vue-i18n/dist/vue-i18n.d.ts" />
declare module 'vue-i18n'
interface ImportMetaEnv {
2023-06-13 11:08:43 -05:00
readonly SAFETWITCH_BACKEND_DOMAIN: string
readonly SAFETWITCH_INSTANCE_DOMAIN: string
readonly SAFETWITCH_HTTPS: string
readonly SAFETWITCH_DEFAULT_LOCALE: string
readonly SAFETWITCH_FALLBACK_LOCALE: string
2023-08-18 13:21:31 -05:00
readonly SAFETWITCH_COMMIT_HASH: string
readonly SAFETWITCH_TAG: string
readonly SAFETWITCH_DEFAULT_THEME: string
// more env variables...
}
interface ImportMeta {
readonly env: ImportMetaEnv
}