UNPKG

695 BTypeScriptView Raw
1import { Arbitrary } from '../check/arbitrary/definition/Arbitrary';
2import { DoubleNextConstraints } from './_next/doubleNext';
3/**
4 * Constraints to be applied on {@link float64Array}
5 * @remarks Since 2.9.0
6 * @public
7 */
8export declare type Float64ArrayConstraints = {
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} & DoubleNextConstraints;
20/**
21 * For Float64Array
22 * @remarks Since 2.9.0
23 * @public
24 */
25export declare function float64Array(constraints?: Float64ArrayConstraints): Arbitrary<Float64Array>;