Interface PaginationTarget

Require a slice of data

interface PaginationTarget {
    skip?: PositiveNumber;
    limit?: OnePlusNumber;
}

Properties

Properties

Number of items to skip

Limit of results, no more than 100, default to 100