contentful.js
    Preparing search index...

    Interface ContentfulCollection<T>

    A wrapper object containing additional information for an offset paginated collection of Contentful resources

    interface ContentfulCollection<T = unknown> {
        items: T[];
        limit: number;
        skip: number;
        sys?: { type: "Array" };
        total: number;
    }

    Type Parameters

    • T = unknown

    Hierarchy (View Summary)

    Index
    items: T[]
    limit: number
    skip: number
    sys?: { type: "Array" }
    total: number