diff --git a/typings/index.d.ts b/typings/index.d.ts index 4f78a786d..ef2c4a311 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -419,7 +419,7 @@ export class CommandInteraction extends Interaction { public options: Collection; public replied: boolean; public webhook: InteractionWebhook; - public defer(options?: InteractionDeferOptions & { fetchReply: true }): Promise; + public defer(options: InteractionDeferOptions & { fetchReply: true }): Promise; public defer(options?: InteractionDeferOptions): Promise; public deleteReply(): Promise; public editReply(options: string | MessagePayload | WebhookEditMessageOptions): Promise; @@ -1069,9 +1069,9 @@ export class MessageComponentInteraction extends Interaction { public message: Message | APIMessage; public replied: boolean; public webhook: InteractionWebhook; - public defer(options?: InteractionDeferOptions & { fetchReply: true }): Promise; + public defer(options: InteractionDeferOptions & { fetchReply: true }): Promise; public defer(options?: InteractionDeferOptions): Promise; - public deferUpdate(options?: InteractionDeferUpdateOptions & { fetchReply: true }): Promise; + public deferUpdate(options: InteractionDeferUpdateOptions & { fetchReply: true }): Promise; public deferUpdate(options?: InteractionDeferUpdateOptions): Promise; public deleteReply(): Promise; public editReply(options: string | MessagePayload | WebhookEditMessageOptions): Promise;