diff options
author | Nuckyz <61953774+Nuckyz@users.noreply.github.com> | 2023-03-08 01:59:50 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-08 01:59:50 -0300 |
commit | 1b199ec5d8e0ca3805a9960323ddd267561b4cf6 (patch) | |
tree | ccc2bdc72a70e0c0ca220953fa881af1f52a4751 /src/api/index.ts | |
parent | 40395d562aeadaeaa88c5bc106797ea5a4ee51e4 (diff) | |
download | Vencord-1b199ec5d8e0ca3805a9960323ddd267561b4cf6.tar.gz Vencord-1b199ec5d8e0ca3805a9960323ddd267561b4cf6.tar.bz2 Vencord-1b199ec5d8e0ca3805a9960323ddd267561b4cf6.zip |
feat: Context Menu API (#496)
Diffstat (limited to 'src/api/index.ts')
-rw-r--r-- | src/api/index.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/api/index.ts b/src/api/index.ts index abb5093..e4b87bf 100644 --- a/src/api/index.ts +++ b/src/api/index.ts @@ -18,6 +18,7 @@ import * as $Badges from "./Badges"; import * as $Commands from "./Commands"; +import * as $ContextMenu from "./ContextMenu"; import * as $DataStore from "./DataStore"; import * as $MemberListDecorators from "./MemberListDecorators"; import * as $MessageAccessories from "./MessageAccessories"; @@ -93,3 +94,8 @@ export const Styles = $Styles; * An API allowing you to display notifications */ export const Notifications = $Notifications; + +/** + * An api allowing you to patch and add/remove items to/from context menus + */ +export const ContextMenu = $ContextMenu; |