Dominik Pschenitschni
19a760506c
Some checks failed
continuous-integration/drone/push Build is failing
features are now supported by baseline browsers
23 lines
584 B
TypeScript
23 lines
584 B
TypeScript
/// <reference types="vite/client" />
|
|
/// <reference types="vite-svg-loader" />
|
|
/// <reference types="cypress" />
|
|
/// <reference types="@histoire/plugin-vue/components" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VIKUNJA_API_URL?: string
|
|
readonly VIKUNJA_HTTP_PORT?: number
|
|
readonly VIKUNJA_HTTPS_PORT?: number
|
|
|
|
readonly VIKUNJA_SENTRY_ENABLED?: boolean
|
|
readonly VIKUNJA_SENTRY_DSN?: string
|
|
|
|
readonly SENTRY_AUTH_TOKEN?: string
|
|
readonly SENTRY_ORG?: string
|
|
readonly SENTRY_PROJECT?: string
|
|
|
|
readonly VITE_IS_ONLINE: boolean
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
} |