mirror of
https://github.com/frappe/books.git
synced 2025-01-07 00:53:58 +00:00
13 lines
267 B
TypeScript
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;
|
|
}
|
|
}
|
|
}
|