mirror of
https://github.com/frappe/books.git
synced 2024-11-08 23:00:56 +00:00
e2b9ea1f49
- delete ipcCalls
19 lines
366 B
TypeScript
19 lines
366 B
TypeScript
import type { IPC } from 'main/preload';
|
|
import Vue, { VNode } from 'vue';
|
|
|
|
declare global {
|
|
const ipc: IPC;
|
|
namespace JSX {
|
|
type Element = VNode;
|
|
type ElementClass = Vue;
|
|
interface IntrinsicElements {
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
[elem: string]: any;
|
|
}
|
|
}
|
|
|
|
interface Window {
|
|
ipc: IPC;
|
|
}
|
|
}
|