From 276dddcbfb388eb54efbac0a18443506a493cb66 Mon Sep 17 00:00:00 2001 From: Souji Date: Tue, 11 Aug 2020 20:59:47 +0200 Subject: [PATCH] fix(PresenceStatus): include invisible in typings (#4585) --- 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 494b34881..c8d6cb233 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -2933,10 +2933,10 @@ declare module 'discord.js' { readonly tag: null; } - type PresenceStatus = ClientPresenceStatus | 'offline'; - type PresenceStatusData = ClientPresenceStatus | 'invisible'; + type PresenceStatus = PresenceStatusData | 'offline'; + interface RateLimitData { timeout: number; limit: number;