From b8397b24e5a3b27639a5a0bf495c2c47b7954dad Mon Sep 17 00:00:00 2001 From: Jiralite <33201955+Jiralite@users.noreply.github.com> Date: Thu, 27 Jun 2024 12:27:59 +0100 Subject: [PATCH] types(ApplicationCommandManager): `Snowflake` fetch (#10366) --- packages/discord.js/typings/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/discord.js/typings/index.d.ts b/packages/discord.js/typings/index.d.ts index ae236f758fb6..5545e4f31cb7 100644 --- a/packages/discord.js/typings/index.d.ts +++ b/packages/discord.js/typings/index.d.ts @@ -4069,7 +4069,7 @@ export class ApplicationCommandManager< id: Snowflake, options: FetchApplicationCommandOptions & { guildId: Snowflake }, ): Promise; - public fetch(options: FetchApplicationCommandOptions): Promise>; + public fetch(options: FetchApplicationCommandOptions): Promise>; public fetch(id: Snowflake, options?: FetchApplicationCommandOptions): Promise; public fetch( id?: Snowflake,