From 9d8351691815c115fba015a5458a2b36d4601354 Mon Sep 17 00:00:00 2001 From: SpaceEEC Date: Mon, 31 Dec 2018 18:21:22 +0100 Subject: [PATCH] typings(Guild): fix typos in method names Fixes #3009 --- typings/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/typings/index.d.ts b/typings/index.d.ts index 67a5fd0ef..7b8cc4815 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -549,9 +549,9 @@ declare module 'discord.js' { public setAFKTimeout(afkTimeout: number, reason?: string): Promise; public setChannelPosition(channel: string | GuildChannel, position: number, relative?: boolean): Promise; public setChannelPositions(channelPositions: ChannelPosition[]): Promise; - public setDefaultMessageNotification(defaultMessageNotifications: DefaultMessageNotifications, reason: string): Promise; + public setDefaultMessageNotifications(defaultMessageNotifications: DefaultMessageNotifications, reason: string): Promise; public setEmbed(embed: GuildEmbedData, reason?: string): Promise; - public setExcplicitContentFilter(explicitContentFilter: number, reason?: string): Promise; + public setExplicitContentFilter(explicitContentFilter: number, reason?: string): Promise; public setIcon(icon: Base64Resolvable, reason?: string): Promise; public setName(name: string, reason?: string): Promise; public setOwner(owner: GuildMemberResolvable, reason?: string): Promise;