From 691e96c5cf60a8cdadb8650405ed2ec5c16f3d08 Mon Sep 17 00:00:00 2001 From: Syntle <43820255+SyntleLmao@users.noreply.github.com> Date: Fri, 3 Apr 2020 10:57:50 +0100 Subject: [PATCH] fix(Presence): add missing `userID` property to declarations (#4013) * Added `userID` property to `Presence` class userID property exists in docs but not in typings * fix(Presence): userID should be typed as Snowflake Co-Authored-By: BorgerKing <38166539+RDambrosio016@users.noreply.github.com> Co-authored-by: SpaceEEC Co-authored-by: BorgerKing <38166539+RDambrosio016@users.noreply.github.com> --- typings/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/typings/index.d.ts b/typings/index.d.ts index ef329b456..407bf034c 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -1165,6 +1165,7 @@ declare module 'discord.js' { public readonly member: GuildMember | null; public status: PresenceStatus; public readonly user: User | null; + public userID: Snowflake; public equals(presence: Presence): boolean; }