aboutsummaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/types.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/utils/types.ts b/src/utils/types.ts
index c1e54aa..60dc4d4 100644
--- a/src/utils/types.ts
+++ b/src/utils/types.ts
@@ -108,6 +108,11 @@ export interface PluginDef {
flux?: {
[E in FluxEvents]?: (event: any) => void;
};
+ /**
+ * Allows you to add custom actions to the Vencord Toolbox.
+ * The key will be used as text for the button
+ */
+ toolboxActions?: Record<string, () => void>;
tags?: string[];
}