aboutsummaryrefslogtreecommitdiff
path: root/src/webpack/common
diff options
context:
space:
mode:
authorV <vendicated@riseup.net>2023-05-13 23:49:47 +0200
committerV <vendicated@riseup.net>2023-05-13 23:49:47 +0200
commitf13f9e80a926fb91ff9c349b708123954d0450ce (patch)
tree5de6b997643be9bab7b0e4cf09f9893478380b17 /src/webpack/common
parentc062f9bdeb1eef02a2fc8b2c2411b715d727336f (diff)
downloadVencord-f13f9e80a926fb91ff9c349b708123954d0450ce.tar.gz
Vencord-f13f9e80a926fb91ff9c349b708123954d0450ce.tar.bz2
Vencord-f13f9e80a926fb91ff9c349b708123954d0450ce.zip
ViewIcons: Add context menu icons
Diffstat (limited to 'src/webpack/common')
-rw-r--r--src/webpack/common/types/menu.d.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/webpack/common/types/menu.d.ts b/src/webpack/common/types/menu.d.ts
index 39e1530..8e9218f 100644
--- a/src/webpack/common/types/menu.d.ts
+++ b/src/webpack/common/types/menu.d.ts
@@ -37,9 +37,10 @@ export interface Menu {
id: string;
label: string;
action?(e: MouseEvent): void;
+ icon?: ComponentType<any>;
color?: string;
- render?: ComponentType;
+ render?: ComponentType<any>;
onChildrenScroll?: Function;
childRowHeight?: number;
listClassName?: string;