aboutsummaryrefslogtreecommitdiff
path: root/src/api/index.ts
diff options
context:
space:
mode:
authorActuallyTheSun <78964224+ActuallyTheSun@users.noreply.github.com>2022-12-21 21:16:32 +0200
committerGitHub <noreply@github.com>2022-12-21 20:16:32 +0100
commitd806be1346fb8218001eb86ffeaa14099248a3ab (patch)
tree8df0fd147be89daea19c5c6724177b1a1e55a4f1 /src/api/index.ts
parent1f73cfa91a5a33ad73f3927ec3795a694c26922b (diff)
downloadVencord-d806be1346fb8218001eb86ffeaa14099248a3ab.tar.gz
Vencord-d806be1346fb8218001eb86ffeaa14099248a3ab.tar.bz2
Vencord-d806be1346fb8218001eb86ffeaa14099248a3ab.zip
feat(PlatformIndicators): add indicator to messages (#343)
Diffstat (limited to 'src/api/index.ts')
-rw-r--r--src/api/index.ts12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/api/index.ts b/src/api/index.ts
index b74da6e..7e981e2 100644
--- a/src/api/index.ts
+++ b/src/api/index.ts
@@ -19,7 +19,9 @@
import * as $Badges from "./Badges";
import * as $Commands from "./Commands";
import * as $DataStore from "./DataStore";
+import * as $MemberListDecorators from "./MemberListDecorators";
import * as $MessageAccessories from "./MessageAccessories";
+import * as $MessageDecorations from "./MessageDecorations";
import * as $MessageEventsAPI from "./MessageEvents";
import * as $MessagePopover from "./MessagePopover";
import * as $Notices from "./Notices";
@@ -72,5 +74,13 @@ const Badges = $Badges;
* An API allowing you to add custom elements to the server list
*/
const ServerList = $ServerList;
+/**
+ * An API allowing you to add components as message accessories
+ */
+const MessageDecorations = $MessageDecorations;
+/**
+ * An API allowing you to add components to member list users, in both DM's and servers
+ */
+const MemberListDecorators = $MemberListDecorators;
-export { Badges, Commands, DataStore, MessageAccessories, MessageEvents, MessagePopover, Notices, ServerList };
+export { Badges, Commands, DataStore, MemberListDecorators, MessageAccessories, MessageDecorations, MessageEvents, MessagePopover, Notices, ServerList };