2
0
mirror of https://github.com/frappe/books.git synced 2025-01-22 22:58:28 +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 Permalink 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
}
}
}