mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2025-01-31 05:51:19 +00:00
13 lines
306 B
TypeScript
13 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;
|
|
}
|
|
}
|
|
}
|