|
|
@ -1,5 +1,7 @@ |
|
|
|
import type { ComponentPublicInstance, ComponentRenderProxy, FunctionalComponent, VNode, VNodeChild, PropType as VuePropType } from 'vue' |
|
|
|
import type { ComponentPublicInstance, ComponentRenderProxy, FunctionalComponent, VNode, VNodeChild, PropType as VuePropType } from 'vue' |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import type { AttributifyAttributes } from '@unocss/preset-attributify' |
|
|
|
|
|
|
|
|
|
|
|
declare global { |
|
|
|
declare global { |
|
|
|
const __APP_INFO__: { |
|
|
|
const __APP_INFO__: { |
|
|
|
pkg: { |
|
|
|
pkg: { |
|
|
@ -92,3 +94,7 @@ declare global { |
|
|
|
declare module 'vue' { |
|
|
|
declare module 'vue' { |
|
|
|
export type JSXComponent<Props = any> = { new (): ComponentPublicInstance<Props> } | FunctionalComponent<Props> |
|
|
|
export type JSXComponent<Props = any> = { new (): ComponentPublicInstance<Props> } | FunctionalComponent<Props> |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
declare module '@vue/runtime-dom' { |
|
|
|
|
|
|
|
interface HTMLAttributes extends AttributifyAttributes {} |
|
|
|
|
|
|
|
} |
|
|
|