/** * Collection and Array Constants * * Constants for array operations, pagination, * and collection manipulation. * * @module utils/collection/constants */ /** * Array and collection operation constants */ export declare const COLLECTION_CONSTANTS: { /** * Center point for array splitting (50%) */ readonly ARRAY_SPLIT_CENTER: 0.5; /** * Default page size for pagination */ readonly DEFAULT_PAGE_SIZE: 10; /** * Default maximum number of retries for operations */ readonly DEFAULT_MAX_RETRIES: 3; /** * Constant for three items (used in various contexts) */ readonly THREE_ITEMS: 3; }; /** * Type for collection constant values */ export type CollectionConstant = (typeof COLLECTION_CONSTANTS)[keyof typeof COLLECTION_CONSTANTS]; //# sourceMappingURL=constants.d.ts.map