CoolFace
Apppublic

Ejdjdososs/fable-ai

sourceHugging Facemitupdated 3mo agoView on Hugging Face
0likes
importMeta.d.ts23 linesDownload Raw Back to types
1// This file is an augmentation to the built-in ImportMeta interface2// Thus cannot contain any top-level imports3// <https://www.typescriptlang.org/docs/handbook/declaration-merging.html#module-augmentation>4 5interface ImportMetaEnv {6  [key: string]: any7  BASE_URL: string8  MODE: string9  DEV: boolean10  PROD: boolean11  SSR: boolean12}13 14interface ImportMeta {15  url: string16 17  readonly hot?: import('./hot').ViteHotContext18 19  readonly env: ImportMetaEnv20 21  glob: import('./importGlob').ImportGlobFunction22}23