UNPKG

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