Files
ComfyUI_frontend/src/vite-env.d.ts
ArtificialLab ea0f74a9f6 Cleanup (#915)
* (update) cleanup:
- move reflect to main.ts
- add config.ts with comfy frontend version
- cleanup index.html and App.vue

* (fix) lint doesn't like branch assignments

* (fix) properly add __COMFYUI_FRONTEND_VERSION__ to ts globals
2024-09-22 10:12:54 +04:00

8 lines
124 B
TypeScript

/// <reference types="vite/client" />
declare global {
interface Window {
__COMFYUI_FRONTEND_VERSION__: string
}
}