types(InteractionReplyOptions): allow setting MessageFlags.SuppressNotifications (#9199)

This commit is contained in:
Almeida
2024-02-20 20:28:37 +00:00
committed by GitHub
parent 992aa67841
commit c89c343b0a
2 changed files with 4 additions and 3 deletions

View File

@@ -6061,8 +6061,8 @@ export interface InteractionReplyOptions extends BaseMessageOptions {
ephemeral?: boolean;
fetchReply?: boolean;
flags?: BitFieldResolvable<
Extract<MessageFlagsString, 'Ephemeral' | 'SuppressEmbeds'>,
MessageFlags.Ephemeral | MessageFlags.SuppressEmbeds
Extract<MessageFlagsString, 'Ephemeral' | 'SuppressEmbeds' | 'SuppressNotifications'>,
MessageFlags.Ephemeral | MessageFlags.SuppressEmbeds | MessageFlags.SuppressNotifications
>;
}