2
0
mirror of https://github.com/frappe/books.git synced 2025-01-08 01:14:39 +00:00
books/src/shims-tsx.d.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
267 B
TypeScript
Raw Normal View History

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