UNPKG

fast-check

Version:

Property based testing framework for JavaScript (like QuickCheck)

9 lines (8 loc) 230 B
import type { Arbitrary } from '../check/arbitrary/definition/Arbitrary.js'; /** * For boolean values - `true` or `false` * @remarks Since 0.0.6 * @public */ declare function boolean(): Arbitrary<boolean>; export { boolean };