Skip to content

Commit

Permalink
Add invisible StatusData
Browse files Browse the repository at this point in the history
  • Loading branch information
DylanDelobel committed Feb 27, 2024
1 parent c0aee31 commit ca04bb3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ export enum RankCardUserStatus {
Offline = "offline",
Streaming = "streaming",
None = "none",
Invisible = "invisible"
}

export type StatusData = "online" | "idle" | "dnd" | "offline" | "streaming" | "none";
export type StatusData = "online" | "idle" | "dnd" | "offline" | "streaming" | "none" | "invisible";

export interface RankCardProps {
handle: string | null;
Expand Down

0 comments on commit ca04bb3

Please sign in to comment.