Interface IPagination

IPagination Interface representing pagination parameters.

const pagination: IPagination = {
offset: 10,
limit: 20
};
interface IPagination {
    limit?: number;
    offset?: number;
}

Hierarchy (view full)

Properties

Properties

limit?: number

The number of items to return.

offset?: number

The number of items to skip before starting to collect the result set.