UNPKG

rapiq

Version:

A tiny library which provides utility types/functions for request and response query handling.

13 lines 292 B
export type PaginationBuildInput = { limit?: number; offset?: number; }; export type PaginationParseOptions = { maxLimit?: number; throwOnFailure?: boolean; }; export type PaginationParseOutput = { limit?: number; offset?: number; }; //# sourceMappingURL=type.d.ts.map