2
0
mirror of https://github.com/frappe/books.git synced 2025-01-07 00:53:58 +00:00
books/src/shims-tsx.d.ts
2023-06-22 11:39:32 +05:30

13 lines
267 B
TypeScript

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