Skip to content

Commit

Permalink
types(ApplicationCommandManager): Snowflake fetch (#10366)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jiralite committed Jun 27, 2024
1 parent ba0cb66 commit b8397b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/discord.js/typings/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4069,7 +4069,7 @@ export class ApplicationCommandManager<
id: Snowflake,
options: FetchApplicationCommandOptions & { guildId: Snowflake },
): Promise<ApplicationCommand>;
public fetch(options: FetchApplicationCommandOptions): Promise<Collection<string, ApplicationCommandScope>>;
public fetch(options: FetchApplicationCommandOptions): Promise<Collection<Snowflake, ApplicationCommandScope>>;
public fetch(id: Snowflake, options?: FetchApplicationCommandOptions): Promise<ApplicationCommandScope>;
public fetch(
id?: Snowflake,
Expand Down

0 comments on commit b8397b2

Please sign in to comment.