jan/web/types/index.d.ts
Louis c5925b6a79
feat: explore plugins from the npm repository and install them remotely (#399)
* feat: explore plugins from the npm repository and install them remotely

* refactor: clean out redundant codes

* chore: only show update button on different version
2023-10-19 22:53:55 +07:00

11 lines
197 B
TypeScript

export {};
declare const PLUGIN_CATALOGS: string[];
declare global {
interface Window {
electronAPI?: any | undefined;
corePlugin?: any | undefined;
coreAPI?: any | undefined;
}
}