Skip to content

Commit

Permalink
Export default request page size
Browse files Browse the repository at this point in the history
  • Loading branch information
sergejchak committed Jan 10, 2025
1 parent 66380f0 commit e81f081
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export {
export { testAxiosObject } from './utils/axiosSetup';
export { Pages } from './utils/pages/pages';
export { DeltaSyncParams } from './utils/params/deltaSyncParams';
export { RequestParams, RequestParamsBuilder } from './utils/params/requestParams';
export { RequestParams, RequestParamsBuilder, DEFAULT_PAGE_SIZE } from './utils/params/requestParams';
export {
ApiResponse,
ApiResponseOnFailure,
Expand Down
2 changes: 1 addition & 1 deletion src/utils/params/requestParams.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const DEFAULT_PAGE_SIZE = 100;
export const DEFAULT_PAGE_SIZE = 100;

// This is the serializable RequestParam data that can be passer around in Redux actions (the builder can't).
// _type is unused, was added only to preserve the generic type for type checking
Expand Down

0 comments on commit e81f081

Please sign in to comment.