mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-07 16:40:05 +00:00
## 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)
22 lines
418 B
TypeScript
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 {}
|