Portfolio/env.d.ts
Matthew L McPeak cb287c0e51
All checks were successful
ci / build (push) Successful in 30s
ci / publish (push) Successful in 18s
Inital Commit
2026-07-16 12:38:41 -04:00

18 lines
454 B
TypeScript

/// <reference types="vite/client" />
// @nychthemeron/library ships this as a CSS-only export subpath, so it has
// no matching *.css wildcard declaration (the specifier doesn't end in .css).
declare module '@nychthemeron/library/style'
interface ViteTypeOptions {
strictImportMetaEnv: unknown;
}
interface ImportMetaEnv {
readonly VITE_API_URL: string;
readonly VITE_API_KEY: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}