UNPKG

fast-check

Version:

Property based testing framework for JavaScript (like QuickCheck)

9 lines (8 loc) 241 B
import type { Arbitrary } from '../check/arbitrary/definition/Arbitrary.js'; /** * For `value` * @param value - The value to produce * @remarks Since 0.0.1 * @public */ export declare function constant<const T>(value: T): Arbitrary<T>;