jan/web/types/index.d.ts
Louis 37c36363d8
refactor: plugin manager and execution as ts (#504)
* refactor: plugin manager and execution as ts

* chore: refactoring
2023-11-01 09:48:28 +07:00

13 lines
270 B
TypeScript

export {}
declare global {
declare const PLUGIN_CATALOG: string
declare const VERSION: string
interface Window {
electronAPI?: any | undefined;
corePlugin?: any | undefined;
coreAPI?: any | undefined;
pluggableElectronIpc?: any | undefined;
}
}