create-decaf-webapp
Version:
Create a new DECAF Webapp
14 lines (11 loc) • 292 B
TypeScript
/// <reference types="node" />
/// <reference types="react" />
/// <reference types="react-dom" />
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly PUBLIC_URL: string;
readonly DECAF_WEBAPP_HOST: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}