UNPKG

653 BTypeScriptView Raw
1import type { Arbitrary } from '../check/arbitrary/definition/Arbitrary.js';
2import type { StringSharedConstraints } from './_shared/StringSharedConstraints.js';
3export type { StringSharedConstraints } from './_shared/StringSharedConstraints.js';
4/**
5 * For strings of {@link hexa}
6 *
7 * @param constraints - Constraints to apply when building instances (since 2.4.0)
8 *
9 * @deprecated Please use ${@link string} with `fc.string({ unit: fc.constantFrom(...'0123456789abcdef'), ...constraints })` instead
10 * @remarks Since 0.0.1
11 * @public
12 */
13declare function hexaString(constraints?: StringSharedConstraints): Arbitrary<string>;
14export { hexaString };