UNPKG

instagram-private-api

Version:

Instagram private API wrapper for full access to instagram

9 lines (8 loc) 472 B
import { Feed } from '../core/feed'; import { PendingFriendshipsFeedResponse, PendingFriendshipsFeedResponseUsersItem } from '../responses'; export declare class PendingFriendshipsFeed extends Feed<PendingFriendshipsFeedResponse, PendingFriendshipsFeedResponseUsersItem> { private nextMaxId; set state(body: PendingFriendshipsFeedResponse); request(): Promise<PendingFriendshipsFeedResponse>; items(): Promise<PendingFriendshipsFeedResponseUsersItem[]>; }