1 | declare const regex: {
|
2 | v4: RegExp;
|
3 | v5: RegExp;
|
4 | };
|
5 | declare const jsonSchema: {
|
6 | v4: {
|
7 | type: string;
|
8 | pattern: string;
|
9 | };
|
10 | v5: {
|
11 | type: string;
|
12 | pattern: string;
|
13 | };
|
14 | };
|
15 | declare const uuidv4: () => string;
|
16 | declare const isUuid: (value: string) => boolean;
|
17 | declare const empty: () => string;
|
18 | declare const fromString: (text: string, namespace?: string) => string;
|
19 | export { uuidv4 as uuid, regex, isUuid, empty, fromString, jsonSchema };
|