2
0
mirror of https://github.com/frappe/books.git synced 2025-01-23 15:18:24 +00:00
books/src/shims-tsx.d.ts

13 lines
267 B
TypeScript
Raw Normal View History

import Vue, { VNode } from 'vue';
2022-01-24 12:49:27 +05:30
declare global {
namespace JSX {
type Element = VNode;
type ElementClass = Vue;
2022-01-24 12:49:27 +05:30
interface IntrinsicElements {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
[elem: string]: any;
2022-01-24 12:49:27 +05:30
}
}
}