mirror of
https://github.com/discordeno/discordeno.git
synced 2026-09-17 08:47:22 +00:00
types(gateway): make since nullable
This commit is contained in:
@@ -166,7 +166,7 @@ export interface DiscordUpdateVoiceState {
|
||||
/** https://discord.com/developers/docs/topics/gateway#update-status */
|
||||
export interface DiscordUpdateStatus {
|
||||
/** Unix time (in milliseconds) of when the client went idle, or null if the client is not idle */
|
||||
since?: number;
|
||||
since: number | null;
|
||||
/** null, or the user's activities */
|
||||
activities: DiscordActivity[] | null;
|
||||
/** The user's new status */
|
||||
|
||||
Reference in New Issue
Block a user