14 lines
235 B
TypeScript
14 lines
235 B
TypeScript
import Vue, { VNode } from 'vue';
|
|
|
|
|
|
declare global {
|
|
namespace JSX {
|
|
type Element = VNode;
|
|
type ElementClass = Vue;
|
|
interface IntrinsicElements {
|
|
[elem: string]: any;
|
|
}
|
|
type IntrinsicAttributes = any;
|
|
}
|
|
}
|