UNPKG

604 BTypeScriptView Raw
1import { ProfileEntity } from '../entities/profile.entity';
2export interface AccountFollowersFeedResponse {
3 sections: null;
4 users: AccountFollowersFeedResponseUsersItem[];
5 big_list: boolean;
6 next_max_id: string;
7 page_size: number;
8 status: string;
9}
10export declare class AccountFollowersFeedResponseUsersItem extends ProfileEntity {
11 pk: number;
12 username: string;
13 full_name: string;
14 is_private: boolean;
15 profile_pic_url: string;
16 profile_pic_id?: string;
17 is_verified: boolean;
18 has_anonymous_profile_picture: boolean;
19 latest_reel_media?: number;
20}