UNPKG

380 BTypeScriptView Raw
1import type { Arbitrary } from '../check/arbitrary/definition/Arbitrary.js';
2/**
3 * For single ascii characters - char code between 0x00 (included) and 0x7f (included)
4 * @deprecated Please use ${@link string} with `fc.string({ unit: 'binary-ascii', minLength: 1, maxLength: 1 })` instead
5 * @remarks Since 0.0.1
6 * @public
7 */
8export declare function ascii(): Arbitrary<string>;