mirror of
https://github.com/RYDE-WORK/full-stack-fastapi-template.git
synced 2026-01-23 15:29:57 +08:00
14 lines
306 B
TypeScript
14 lines
306 B
TypeScript
import Vue, { VNode } from 'vue';
|
|
|
|
declare global {
|
|
namespace JSX {
|
|
// tslint:disable no-empty-interface
|
|
interface Element extends VNode {}
|
|
// tslint:disable no-empty-interface
|
|
interface ElementClass extends Vue {}
|
|
interface IntrinsicElements {
|
|
[elem: string]: any;
|
|
}
|
|
}
|
|
}
|