From 4f8ca2936a85109757fb3225e9d6cf9aae9714e2 Mon Sep 17 00:00:00 2001 From: Milo <50248166+Milo123459@users.noreply.github.com> Date: Fri, 23 Jul 2021 20:18:30 +0100 Subject: [PATCH] fix(Typings): type attachments to InteractionUpdateOptions (#6162) * fix(Typings): type attachments with never * Update typings/index.d.ts Co-authored-by: DTrombett <73136330+DTrombett@users.noreply.github.com> * chore(Typings): fix * chore(Typings): add fetchReply Co-authored-by: DTrombett <73136330+DTrombett@users.noreply.github.com> --- typings/index.d.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/typings/index.d.ts b/typings/index.d.ts index 639df52ac..5eb87edbf 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -3699,7 +3699,9 @@ export type InteractionResponseType = keyof typeof InteractionResponseTypes; export type InteractionType = keyof typeof InteractionTypes; -export type InteractionUpdateOptions = Omit; +export interface InteractionUpdateOptions extends MessageEditOptions { + fetchReply?: boolean; +} export type IntentsString = | 'GUILDS'