Interface ICursoredData<T>

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

interface ICursoredData<T extends INotification | ITweet | IUser> {
    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.