mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-09 11:57:28 -08:00
14 lines
289 B
TypeScript
14 lines
289 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;
|
||
|
}
|
||
|
}
|
||
|
}
|