fix reloading plugins

This commit is contained in:
AAGaming
2024-08-08 15:26:40 -04:00
parent 7a161a5b83
commit 93b3919325
3 changed files with 10 additions and 8 deletions
+1
View File
@@ -6,6 +6,7 @@ export enum PluginLoadType {
export interface Plugin {
name: string;
version?: string;
loadType?: PluginLoadType;
icon: JSX.Element;
content?: JSX.Element;
onDismount?(): void;