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

14 lines
276 B
TypeScript
Raw Normal View History

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