Files
ComfyUI_frontend/src/vite-env.d.ts
Christian Byrne 786c3b8c12 cleanup: remove now-unused stripe pricing table remnants (#7557)
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)
2025-12-16 13:39:18 -05:00

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 {}