UNPKG

316 BTypeScriptView Raw
1import { Arbitrary } from '../check/arbitrary/definition/Arbitrary';
2/**
3 * For pure functions
4 *
5 * @param arb - Arbitrary responsible to produce the values
6 *
7 * @remarks Since 1.6.0
8 * @public
9 */
10export declare function func<TArgs extends any[], TOut>(arb: Arbitrary<TOut>): Arbitrary<(...args: TArgs) => TOut>;