mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-19 06:20:10 +00:00
Backport of #7288 to `cloud/1.34` Automatically created by backport workflow. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-7292-backport-cloud-1-34-feat-add-Stripe-pricing-table-integration-for-subscription-dialog--2c46d73d36508111869ddf32de921b29) by [Unito](https://www.unito.io) Co-authored-by: Christian Byrne <cbyrne@comfy.org>
31 lines
614 B
TypeScript
31 lines
614 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 {
|
|
readonly VITE_STRIPE_PUBLISHABLE_KEY?: string
|
|
readonly VITE_STRIPE_PRICING_TABLE_ID?: string
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|
|
}
|
|
|
|
export {}
|