aboutsummaryrefslogtreecommitdiff
path: root/src/api/index.ts
diff options
context:
space:
mode:
authormegumin <megumin.bakaretsurie@gmail.com>2022-11-11 22:50:09 +0000
committerGitHub <noreply@github.com>2022-11-11 23:50:09 +0100
commit30ca4f1cf9cc1a4179f5c7ef5cfb47eaff83f56a (patch)
tree8ee2a9e7f83ba8c3c2441636e5d122de3aa663b4 /src/api/index.ts
parent62e0787cf25a76881fac79b5f3df0ebda706bb21 (diff)
downloadVencord-30ca4f1cf9cc1a4179f5c7ef5cfb47eaff83f56a.tar.gz
Vencord-30ca4f1cf9cc1a4179f5c7ef5cfb47eaff83f56a.tar.bz2
Vencord-30ca4f1cf9cc1a4179f5c7ef5cfb47eaff83f56a.zip
feat: Badge API (#206)
Diffstat (limited to 'src/api/index.ts')
-rw-r--r--src/api/index.ts7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/api/index.ts b/src/api/index.ts
index 73dafc9..bde4b3e 100644
--- a/src/api/index.ts
+++ b/src/api/index.ts
@@ -16,6 +16,7 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
+import * as $Badges from "./Badges";
import * as $Commands from "./Commands";
import * as $DataStore from "./DataStore";
import * as $MessageAccessories from "./MessageAccessories";
@@ -57,5 +58,9 @@ const DataStore = $DataStore;
* An API allowing you to add custom components as message accessories
*/
const MessageAccessories = $MessageAccessories;
+/**
+ * An API allowing you to add badges to user profiles
+ */
+const Badges = $Badges;
-export { Commands,DataStore, MessageAccessories, MessageEvents, Notices };
+export { Badges, Commands, DataStore, MessageAccessories, MessageEvents, Notices };