Interface ContentfulCollection<T>

A wrapper object containing additional information for a collection of Contentful resources

interface ContentfulCollection<T> {
    items: T[];
    limit: number;
    skip: number;
    sys?: EntrySys | AssetSys;
    total: number;
}

Type Parameters

  • T

Properties

items: T[]
limit: number
skip: number
total: number