fast-check
Version:
Property based testing framework for JavaScript (like QuickCheck)
10 lines (9 loc) • 371 B
TypeScript
import type { Arbitrary } from '../check/arbitrary/definition/Arbitrary.js';
import type { IntArrayConstraints } from './_internals/builders/TypedIntArrayArbitraryBuilder.js';
/**
* For Uint16Array
* @remarks Since 2.9.0
* @public
*/
export declare function uint16Array(constraints?: IntArrayConstraints): Arbitrary<Uint16Array>;
export type { IntArrayConstraints };