Merge pull request #334 from discordeno/fix-role-type

fix(RoleData): "tags" property can be undefined not null
This commit is contained in:
Skillz4Killz
2021-01-02 12:48:41 -05:00
committed by GitHub

View File

@@ -16,7 +16,7 @@ export interface RoleData {
/** whether this role is mentionable */
mentionable: boolean;
/** Certain roles may have tags that allow you to determine if this role is related to a bot, an integration, or the booster role. */
tags: RoleTags | null;
tags?: RoleTags;
}
export interface RoleTags {