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