From cbde819b6a21e008625c20ca575d44f4e450bd2f Mon Sep 17 00:00:00 2001 From: Jyguy Date: Tue, 19 Nov 2019 18:21:47 -0500 Subject: [PATCH] typings(GuildAuditLogsFetchOptions): specify concrete type of 'type' property (#3586) --- 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 3cae781a9..20851d7a2 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -2222,7 +2222,7 @@ declare module 'discord.js' { before?: Snowflake | GuildAuditLogsEntry; limit?: number; user?: UserResolvable; - type?: string | number; + type?: GuildAuditLogsAction | number; } type GuildAuditLogsTarget = keyof GuildAuditLogsTargets;