16 lines
341 B
TypeScript
16 lines
341 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_API_URL?: string
|
|
readonly VITE_STORE_EMAIL?: string
|
|
readonly VITE_STORE_PHONE?: string
|
|
readonly VITE_STORE_SOCIAL_NOTE?: string
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|
|
|
|
declare module 'swiper/css'
|
|
declare module 'swiper/css/navigation'
|