Files
ComfyUI_frontend/src/vite-env.d.ts
Christian Byrne d9e62985c6 remove all auth service work related code (#6294)
## Summary

Removes all service worker auth code, as it is being replaced by a more
robust standard solution for authenticating view and viewvideo requests
in https://github.com/Comfy-Org/ComfyUI_frontend/pull/6295.

┆Issue is synchronized with this [Notion
page](https://www.notion.so/PR-6294-remove-all-auth-service-work-related-code-2986d73d36508170a24bf1c42cad401e)
by [Unito](https://www.unito.io)
2025-10-25 23:08:41 -07:00

22 lines
418 B
TypeScript

/// <reference types="vite/client" />
declare module 'virtual:icons/*' {
import type { DefineComponent } from 'vue'
const component: DefineComponent
export default component
}
declare module '~icons/*' {
import type { DefineComponent } from 'vue'
const component: DefineComponent
export default component
}
declare global {
interface Window {
__COMFYUI_FRONTEND_VERSION__: string
}
}
export {}