Add missing JSDoc for RoleTags

This commit is contained in:
ayntee
2020-11-11 20:00:17 +04:00
parent 02dce94ada
commit ff711d622a
+3
View File
@@ -20,7 +20,10 @@ export interface RoleData {
} }
export interface RoleTags { export interface RoleTags {
/** the id of the bot who has this role */
bot_id?: string; bot_id?: string;
/** whether this is the premium subscriber role for this guild */
premium_subscriber?: null; premium_subscriber?: null;
/** the id of the integration this role belongs to */
integration_id?: string; integration_id?: string;
} }