UNPKG

381 BTypeScriptView Raw
1import { Arbitrary } from '../check/arbitrary/definition/Arbitrary';
2/**
3 * For tuples produced by the provided `arbs`
4 *
5 * @param arbs - Ordered list of arbitraries
6 *
7 * @deprecated Switch to {@link tuple} instead
8 * @remarks Since 1.0.0
9 * @public
10 */
11export declare function genericTuple<Ts extends unknown[]>(arbs: {
12 [K in keyof Ts]: Arbitrary<Ts[K]>;
13}): Arbitrary<Ts>;