diff options
author | Vendicated <vendicated@riseup.net> | 2022-11-12 15:09:02 +0100 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2022-11-12 17:20:19 +0100 |
commit | 81edc1407071c6c0328f40a1ee487ea0388b9a7e (patch) | |
tree | 42c54ab94a58d9ffd5a2b201cfe9539a158386e4 /src/utils | |
parent | b48c8d8a4a003ffe4bdee4c3ba3ae6f54ce1f317 (diff) | |
download | Vencord-81edc1407071c6c0328f40a1ee487ea0388b9a7e.tar.gz Vencord-81edc1407071c6c0328f40a1ee487ea0388b9a7e.tar.bz2 Vencord-81edc1407071c6c0328f40a1ee487ea0388b9a7e.zip |
fix PronounDB crash with new profile in dms, force start dependencies
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/types.ts | 3 |
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[]; |