mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-11 02:33:51 +00:00
14 lines
280 B
TypeScript
14 lines
280 B
TypeScript
import Vue, { VNode } from 'vue';
|
|
|
|
declare global {
|
|
namespace JSX {
|
|
// tslint:disable no-empty-interface
|
|
type Element = VNode;
|
|
// tslint:disable no-empty-interface
|
|
type ElementClass = Vue;
|
|
interface IntrinsicElements {
|
|
[elem: string]: any;
|
|
}
|
|
}
|
|
}
|