aboutsummaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/types.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/utils/types.ts b/src/utils/types.ts
index dd0a9c5..30c603f 100644
--- a/src/utils/types.ts
+++ b/src/utils/types.ts
@@ -49,9 +49,10 @@ export interface PluginAuthor {
export interface Plugin extends PluginDef {
patches?: Patch[];
started: boolean;
+ isDependency?: boolean;
}
-interface PluginDef {
+export interface PluginDef {
name: string;
description: string;
authors: PluginAuthor[];