Interface ICursoredData<T>

The data that is fetched batch-wise using a cursor.

interface ICursoredData<
    T extends
        IDirectMessage
        | IConversation
        | INotification
        | ITweet
        | IUser
        | IList,
> {
    list: T[];
    next: string;
}

Type Parameters

Implemented by

Properties

Properties

list: T[]

The batch of data of the given type.

next: string

The cursor to the next batch of data.