UNPKG

692 BTypeScriptView Raw
1import { Arbitrary } from '../check/arbitrary/definition/Arbitrary';
2import { FloatNextConstraints } from './_next/floatNext';
3/**
4 * Constraints to be applied on {@link float32Array}
5 * @remarks Since 2.9.0
6 * @public
7 */
8export declare type Float32ArrayConstraints = {
9 /**
10 * Lower bound of the generated array size
11 * @remarks Since 2.9.0
12 */
13 minLength?: number;
14 /**
15 * Upper bound of the generated array size
16 * @remarks Since 2.9.0
17 */
18 maxLength?: number;
19} & FloatNextConstraints;
20/**
21 * For Float32Array
22 * @remarks Since 2.9.0
23 * @public
24 */
25export declare function float32Array(constraints?: Float32ArrayConstraints): Arbitrary<Float32Array>;