From 6367f603f611e9dec2d5365225102fd7758f0e90 Mon Sep 17 00:00:00 2001 From: Carter <45381083+Fyko@users.noreply.github.com> Date: Fri, 1 May 2020 07:45:14 -0600 Subject: [PATCH] typings: Add User#fetchFlags (#4138) --- typings/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/typings/index.d.ts b/typings/index.d.ts index 2dc5a7caf..fffff77d8 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -1489,6 +1489,7 @@ declare module 'discord.js' { public displayAvatarURL(options?: ImageURLOptions & { dynamic?: boolean }): string; public equals(user: User): boolean; public fetch(): Promise; + public fetchFlags(): Promise; public toString(): string; public typingDurationIn(channel: ChannelResolvable): number; public typingIn(channel: ChannelResolvable): boolean;