mirror of
https://gitee.com/bootx/dax-pay-ui.git
synced 2025-09-10 14:09:25 +00:00
20 lines
455 B
TypeScript
20 lines
455 B
TypeScript
import type { ComponentRenderProxy, VNode } from 'vue';
|
|
|
|
declare global {
|
|
namespace JSX {
|
|
// tslint:disable no-empty-interface
|
|
type Element = VNode;
|
|
// tslint:disable no-empty-interface
|
|
type ElementClass = ComponentRenderProxy;
|
|
interface ElementAttributesProperty {
|
|
$props: any;
|
|
}
|
|
interface IntrinsicElements {
|
|
[elem: string]: any;
|
|
}
|
|
interface IntrinsicAttributes {
|
|
[elem: string]: any;
|
|
}
|
|
}
|
|
}
|