mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-12 07:34:08 -08:00
18 lines
413 B
TypeScript
18 lines
413 B
TypeScript
|
import Vue, { VNode } from 'vue';
|
||
|
|
||
|
declare module 'markdown-it-link-attributes';
|
||
|
declare module 'markdown-it-emoji';
|
||
|
declare module 'markdown-it-task-lists';
|
||
|
|
||
|
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;
|
||
|
}
|
||
|
}
|
||
|
}
|