UNPKG

fast-check

Version:

Property based testing framework for JavaScript (like QuickCheck)

8 lines (7 loc) 251 B
import { Arbitrary } from './definition/Arbitrary'; /** * For tuples produced by the provided `arbs` * @param arbs - Ordered list of arbitraries */ declare function genericTuple<Ts>(arbs: Arbitrary<Ts>[]): Arbitrary<Ts[]>; export { genericTuple };