IPagination Interface representing pagination parameters.
const pagination: IPagination = { offset: 10, limit: 20}; Copy
const pagination: IPagination = { offset: 10, limit: 20};
Optional
The number of items to return.
The number of items to skip before starting to collect the result set.
IPagination Interface representing pagination parameters.
Example