UNPKG

664 BTypeScriptView Raw
1import type { Arbitrary } from '../check/arbitrary/definition/Arbitrary.js';
2/**
3 * For UUID of a given version (in v1 to v15)
4 *
5 * According to {@link https://tools.ietf.org/html/rfc4122 | RFC 4122} and {@link https://datatracker.ietf.org/doc/html/rfc9562#name-version-field | RFC 9562} any version between 1 and 15 is valid even if only the ones from 1 to 8 have really been leveraged for now.
6 *
7 * No mixed case, only lower case digits (0-9a-f)
8 *
9 * @deprecated Prefer using {@link uuid}
10 * @remarks Since 1.17.0
11 * @public
12 */
13export declare function uuidV(versionNumber: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15): Arbitrary<string>;