18 lines
454 B
TypeScript
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;
|
|
}
|