docs(Presence): add ClientPresenceStatus typedef (#3208)

This commit is contained in:
izexi
2019-04-15 13:41:37 +01:00
committed by SpaceEEC
parent 2af101efbb
commit d9a053df67
2 changed files with 15 additions and 8 deletions

6
typings/index.d.ts vendored
View File

@@ -2075,9 +2075,9 @@ declare module 'discord.js' {
type ClientPresenceStatus = 'online' | 'idle' | 'dnd';
interface ClientPresenceStatusData {
web?: PresenceStatus;
mobile?: PresenceStatus;
desktop?: PresenceStatus;
web?: ClientPresenceStatus;
mobile?: ClientPresenceStatus;
desktop?: ClientPresenceStatus;
}
type PartialTypes = 'USER'