mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-17 12:03:31 +01:00
fix(guild): fix incorrectly-detected deprecated overload
This commit is contained in:
@@ -115,7 +115,7 @@ export class GuildsAPI {
|
|||||||
* @param options - The options for fetching the guild
|
* @param options - The options for fetching the guild
|
||||||
* @deprecated Use the overload with a query instead.
|
* @deprecated Use the overload with a query instead.
|
||||||
*/
|
*/
|
||||||
public async get(guildId: Snowflake, { signal }?: Pick<RequestData, 'signal'>): Promise<RESTGetAPIGuildResult>;
|
public async get(guildId: Snowflake, { signal }: Pick<RequestData, 'signal'>): Promise<RESTGetAPIGuildResult>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Fetches a guild
|
* Fetches a guild
|
||||||
|
|||||||
Reference in New Issue
Block a user