interface Paginated<V> {
    info: PageInfo;
    nodes: readonly V[];
    totalCount: number;
}

Type Parameters

  • V

Properties

Properties

info: PageInfo
nodes: readonly V[]
totalCount: number