mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2025-02-24 02:00:46 +00:00
11 lines
224 B
TypeScript
11 lines
224 B
TypeScript
import Vue, { VNode } from "vue";
|
|
|
|
declare global {
|
|
namespace JSX {
|
|
interface Element extends VNode {}
|
|
interface ElementClass extends Vue {}
|
|
interface IntrinsicElements {
|
|
[elem: string]: any;
|
|
}
|
|
}
|
|
}
|