Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions types/validator/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1148,9 +1148,9 @@ declare namespace validator {
*/
function isUppercase(str: string): boolean;

type UUIDVersion = 3 | 4 | 5 | '3' | '4' | '5' | 'all';
type UUIDVersion = '1' | '2' | '3' | '4' | '5' | 'all' | 1 | 2 | 3 | 4 | 5;
/**
* Check if the string is a UUID (version 3, 4 or 5).
* Check if the string is a UUID (version 1, 2, 3, 4 or 5).
*
* @param [version="all"] - UUID version
*/
Expand Down