mirror of
https://github.com/danbulant/discord.js
synced 2026-06-09 17:52:55 +00:00
fix(PresenceStatus): include invisible in typings (#4585)
This commit is contained in:
parent
2adb5815bf
commit
276dddcbfb
1 changed files with 2 additions and 2 deletions
4
typings/index.d.ts
vendored
4
typings/index.d.ts
vendored
|
|
@ -2933,10 +2933,10 @@ declare module 'discord.js' {
|
||||||
readonly tag: null;
|
readonly tag: null;
|
||||||
}
|
}
|
||||||
|
|
||||||
type PresenceStatus = ClientPresenceStatus | 'offline';
|
|
||||||
|
|
||||||
type PresenceStatusData = ClientPresenceStatus | 'invisible';
|
type PresenceStatusData = ClientPresenceStatus | 'invisible';
|
||||||
|
|
||||||
|
type PresenceStatus = PresenceStatusData | 'offline';
|
||||||
|
|
||||||
interface RateLimitData {
|
interface RateLimitData {
|
||||||
timeout: number;
|
timeout: number;
|
||||||
limit: number;
|
limit: number;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue