Interface ChronologicalFeedPage<CursorValue, TInstance>

Result of a chronological feed query.

interface ChronologicalFeedPage<CursorValue, TInstance> {
    hasMore: boolean;
    nextCursor?: CursorValue;
    rows: TInstance[];
}

Type Parameters

  • CursorValue
  • TInstance

Properties

hasMore: boolean
nextCursor?: CursorValue
rows: TInstance[]