UNPKG

328 BTypeScriptView Raw
1import type { Arbitrary } from '../check/arbitrary/definition/Arbitrary.js';
2/**
3 * For ulid
4 *
5 * According to {@link https://github.com/ulid/spec | ulid spec}
6 *
7 * No mixed case, only upper case digits (0-9A-Z except for: I,L,O,U)
8 *
9 * @remarks Since 3.11.0
10 * @public
11 */
12export declare function ulid(): Arbitrary<string>;