Skip to content

Instantly share code, notes, and snippets.

@HonbraDev
Created March 20, 2021 10:51
Show Gist options
  • Save HonbraDev/f675dd0cc763d16d5559d78488279cbc to your computer and use it in GitHub Desktop.
Save HonbraDev/f675dd0cc763d16d5559d78488279cbc to your computer and use it in GitHub Desktop.
DogeTracker popular rooms typing
export type PopularRooms = {
rooms: {
voiceServerId: string;
peoplePreviewList: {
numFollowers: number;
id: string;
displayName: string;
}[];
numPeopleInside: number;
name: string;
isPrivate: boolean;
inserted_at: string;
id: string;
description: string;
creatorId: string;
}[];
nextCursor: null;
initial: boolean;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment