instagram-private-api
Version:
Instagram private API wrapper for full access to instagram
21 lines (20 loc) • 604 B
TypeScript
import { ProfileEntity } from '../entities/profile.entity';
export interface AccountFollowersFeedResponse {
sections: null;
users: AccountFollowersFeedResponseUsersItem[];
big_list: boolean;
next_max_id: string;
page_size: number;
status: string;
}
export declare class AccountFollowersFeedResponseUsersItem extends ProfileEntity {
pk: number;
username: string;
full_name: string;
is_private: boolean;
profile_pic_url: string;
profile_pic_id?: string;
is_verified: boolean;
has_anonymous_profile_picture: boolean;
latest_reel_media?: number;
}