This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/env.d.ts

33 lines
852 B
TypeScript
Raw Normal View History

2022-04-10 00:40:15 +00:00
/// <reference types="vite/client" />
/// <reference types="vite-svg-loader" />
/// <reference types="cypress" />
2022-11-17 16:05:10 +00:00
/// <reference types="@histoire/plugin-vue/components" />
2023-03-29 11:31:20 +00:00
declare module 'postcss-focus-within/browser' {
2022-05-22 14:20:06 +00:00
import focusWithinInit from 'postcss-focus-within/browser'
export default focusWithinInit
2023-03-29 11:31:20 +00:00
}
declare module 'css-has-pseudo/browser' {
2022-05-22 14:20:06 +00:00
import cssHasPseudo from 'css-has-pseudo/browser'
export default cssHasPseudo
2023-03-29 11:31:20 +00:00
}
interface ImportMetaEnv {
2022-05-22 14:20:06 +00:00
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 {
2022-05-22 14:20:06 +00:00
readonly env: ImportMetaEnv
}