From ff711d622a74a57cd02c5328b7b8e7017da94026 Mon Sep 17 00:00:00 2001 From: ayntee Date: Wed, 11 Nov 2020 20:00:17 +0400 Subject: [PATCH] Add missing JSDoc for RoleTags --- src/types/role.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/types/role.ts b/src/types/role.ts index da51cde2f..aaae41b90 100644 --- a/src/types/role.ts +++ b/src/types/role.ts @@ -20,7 +20,10 @@ export interface RoleData { } export interface RoleTags { + /** the id of the bot who has this role */ bot_id?: string; + /** whether this is the premium subscriber role for this guild */ premium_subscriber?: null; + /** the id of the integration this role belongs to */ integration_id?: string; }