UNPKG

477 BTypeScriptView Raw
1import { Arbitrary } from '../check/arbitrary/definition/Arbitrary';
2/**
3 * For single characters - all values in 0x0000-0xffff can be generated
4 *
5 * WARNING:
6 *
7 * Some generated characters might appear invalid regarding UCS-2 and UTF-16 encoding.
8 * Indeed values within 0xd800 and 0xdfff constitute surrogate pair characters and are illegal without their paired character.
9 *
10 * @remarks Since 0.0.11
11 * @public
12 */
13export declare function char16bits(): Arbitrary<string>;