Interface CursorPaginatedCollectionProp<TObj>

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

Type Parameters

  • TObj

Hierarchy (view full)

Properties

Properties

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