unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
21 lines • 581 B
JavaScript
export const basePaginationParameters = [
{
name: 'limit',
schema: {
type: 'string',
example: '50',
},
description: 'The number of results to return in a page. By default it is set to 50.',
in: 'query',
},
{
name: 'offset',
schema: {
type: 'string',
example: '50',
},
description: 'The number of results to skip when returning a page. By default it is set to 0.',
in: 'query',
},
];
//# sourceMappingURL=base-pagination-parameters.js.map