Files
react-editor-shopify/src/vite-env.d.ts
2026-05-03 20:12:12 -04:00

11 lines
223 B
TypeScript

/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_SHOPIFY_DOMAIN?: string;
readonly VITE_SHOPIFY_STOREFRONT_ACCESS_TOKEN?: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}