Interface ExoCursorPaginatedCollectionProp<TObj>

interface ExoCursorPaginatedCollectionProp<TObj> {
    items: TObj[];
    limit: number;
    pages: {
        next?: string;
        prev?: string;
    };
    sys: {
        type: "Array";
    };
    total?: number;
}

Type Parameters

  • TObj

Hierarchy (view full)

Properties

items: TObj[]
limit: number
pages: {
    next?: string;
    prev?: string;
}
sys: {
    type: "Array";
}
total?: number