UNPKG

582 BTypeScriptView Raw
1import type { Arbitrary } from '../check/arbitrary/definition/Arbitrary.js';
2/**
3 * For single unicode characters - any of the code points defined in the unicode standard
4 *
5 * WARNING: Generated values can have a length greater than 1.
6 *
7 * {@link https://tc39.github.io/ecma262/#sec-utf16encoding}
8 *
9 * @deprecated Please use ${@link string} with `fc.string({ unit: 'grapheme', minLength: 1, maxLength: 1 })` or `fc.string({ unit: 'binary', minLength: 1, maxLength: 1 })` instead
10 * @remarks Since 0.0.11
11 * @public
12 */
13export declare function fullUnicode(): Arbitrary<string>;