mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-03 09:20:08 +00:00
Merge pull request #334 from discordeno/fix-role-type
fix(RoleData): "tags" property can be undefined not null
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user