* feature: event based plugin * chore: update README.md * Update yarn script for build plugins (#363) * Update yarn script for build plugins * Plugin-core install from npmjs instead of from local --------- Co-authored-by: Hien To <> * #360 plugin preferences (#361) * feature: #360 plugin preferences * chore: update core-plugin README.md * chore: create collections on start * chore: bumb core version * chore: update README * chore: notify preferences update * fix: preference update --------- Co-authored-by: hiento09 <136591877+hiento09@users.noreply.github.com>
10 lines
156 B
TypeScript
10 lines
156 B
TypeScript
export {};
|
|
|
|
declare global {
|
|
interface Window {
|
|
electronAPI?: any | undefined;
|
|
corePlugin?: any | undefined;
|
|
coreAPI?: any | undefined;
|
|
}
|
|
}
|