mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2025-01-05 15:14:05 +00:00
594d5a91ec
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
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;
|
|
}
|
|
}
|
|
}
|