UNPKG

358 BTypeScriptView Raw
1import { Arbitrary } from '../check/arbitrary/definition/Arbitrary';
2/**
3 * For comparison boolean functions
4 *
5 * A comparison boolean function returns:
6 * - `true` whenever `a < b`
7 * - `false` otherwise (ie. `a = b` or `a > b`)
8 *
9 * @remarks Since 1.6.0
10 * @public
11 */
12export declare function compareBooleanFunc<T>(): Arbitrary<(a: T, b: T) => boolean>;