mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-01-31 13:29:55 +00:00
Removes vestigial remnants of the Stripe pricing table integration, which was replaced in https://github.com/Comfy-Org/ComfyUI_frontend/pull/7359. The feature flag is now obsolete, but was forgotten about in that PR. This PR cleans everything up fully. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-7557-cleanup-remove-now-unused-stripe-pricing-table-remnants-2cb6d73d3650812aaa5efe91f766fb20) by [Unito](https://www.unito.io)
30 lines
543 B
TypeScript
30 lines
543 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
|
|
}
|
|
|
|
interface ImportMetaEnv {
|
|
VITE_APP_VERSION?: string
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|
|
}
|
|
|
|
export {}
|