mirror of
https://github.com/harivansh-afk/GymSupps.git
synced 2026-04-15 06:04:42 +00:00
10 lines
220 B
TypeScript
10 lines
220 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_SHOPIFY_STORE_DOMAIN: string;
|
|
readonly VITE_SHOPIFY_STOREFRONT_TOKEN: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|