From 656b51875f82a82a4429b50157a77d37be211534 Mon Sep 17 00:00:00 2001 From: Deivid <35281350+Drylozu@users.noreply.github.com> Date: Mon, 23 Aug 2021 09:23:27 -0500 Subject: [PATCH] typings(CommandInteractionOptionResolver): add missing parameter (#6497) --- typings/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typings/index.d.ts b/typings/index.d.ts index dcad6f235..359f2bf91 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -542,7 +542,7 @@ export class CommandInteraction extends BaseCommandInteraction { } export class CommandInteractionOptionResolver { - public constructor(client: Client, options: CommandInteractionOption[]); + public constructor(client: Client, options: CommandInteractionOption[], resolved: CommandInteractionResolvedData); public readonly client: Client; public readonly data: readonly CommandInteractionOption[]; public readonly resolved: Readonly;