| 4905 | * @since 3.10.0 |
| 4906 | */ |
| 4907 | export class ULID extends String$.pipe( |
| 4908 | pattern(ulidRegexp, { |
| 4909 | schemaId: ULIDSchemaId, |
| 4910 | identifier: "ULID", |
| 4911 | description: "a Universally Unique Lexicographically Sortable Identifier", |
| 4912 | arbitrary: (): LazyArbitrary<string> => (fc) => fc.ulid() |
| 4913 | }) |
| 4914 | ) {} |
| 4915 | |
| 4916 | /** |
| 4917 | * Defines a schema that represents a `URL` object. |