UNPKG

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