mirror of
https://github.com/frappe/books.git
synced 2024-11-15 09:54:04 +00:00
14 lines
304 B
TypeScript
14 lines
304 B
TypeScript
import Vue, { VNode } from 'vue'
|
|
|
|
declare global {
|
|
namespace JSX {
|
|
// tslint:disable no-empty-interface
|
|
interface Element extends VNode {}
|
|
// tslint:disable no-empty-interface
|
|
interface ElementClass extends Vue {}
|
|
interface IntrinsicElements {
|
|
[elem: string]: any
|
|
}
|
|
}
|
|
}
|