UNPKG

377 BTypeScriptView Raw
1export interface LiveViewerListResponseRootObject {
2 users: LiveViewerListResponseUsersItem[];
3 status: string;
4}
5export interface LiveViewerListResponseUsersItem {
6 pk: number;
7 username: string;
8 full_name: string;
9 is_private: boolean;
10 profile_pic_url: string;
11 profile_pic_id: string;
12 is_verified: boolean;
13 live_with_eligibility: string;
14}