fangs/source/types.d.ts

20 lines
415 B
TypeScript
Raw Normal View History

2022-03-14 09:58:47 +00:00
import {html} from 'htm/preact';
declare global {
// See Vite documentation for `import.meta.env` usage.
// https://vitejs.dev/guide/env-and-mode.html
interface ImportMeta {
readonly env: ImportMetaEnv;
}
interface ImportMetaEnv {
readonly BASE_URL: string;
readonly DEV: boolean;
readonly MODE: string;
readonly PROD: boolean;
}
type HtmComponent = ReturnType<typeof html>;
}