mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-03 17:30:07 +00:00
change to bigint
This commit is contained in:
@@ -3,11 +3,11 @@ export interface ModifyGuildMember {
|
||||
/** Value to set users nickname to. Requires the `MANAGE_NICKNAMES` permission */
|
||||
nick?: string | null;
|
||||
/** Array of role ids the member is assigned. Requires the `MANAGE_ROLES` permission */
|
||||
roles?: string[] | null;
|
||||
roles?: bigint[] | null;
|
||||
/** Whether the user is muted in voice channels. Will throw a 400 if the user is not in a voice channel. Requires the `MUTE_MEMBERS` permission */
|
||||
mute?: boolean | null;
|
||||
/** Whether the user is deafened in voice channels. Will throw a 400 if the user is not in a voice channel. Requires the `MOVE_MEMBERS` permission */
|
||||
deaf?: boolean | null;
|
||||
/** Id of channel to move user to (if they are connected to voice). Requires the `MOVE_MEMBERS` permission */
|
||||
channelId: string | null;
|
||||
channelId?: bigint | null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user