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' {
|
|
|
|
import focusWithinInit from 'postcss-focus-within/browser'
|
|
|
|
export default focusWithinInit
|
|
|
|
}
|
|
|
|
|
|
|
|
declare module 'css-has-pseudo/browser' {
|
|
|
|
import cssHasPseudo from 'css-has-pseudo/browser'
|
|
|
|
export default cssHasPseudo
|
|
|
|
}
|
|
|
|
|
2023-01-05 13:33:37 +00:00
|
|
|
interface ImportMetaEnv {
|
|
|
|
readonly VITE_IS_ONLINE: boolean
|
|
|
|
}
|
|
|
|
|
|
|
|
interface ImportMeta {
|
|
|
|
readonly env: ImportMetaEnv
|
|
|
|
}
|