UNPKG
uuid-core
Version:
latest (1.0.0)
1.0.0
A simple UUID generator library for Node.js, NestJS, and Next.js
uuid-core
/
src
/
types.ts
3 lines
(2 loc)
•
104 B
text/typescript
View Raw
1
2
3
export
type
UUID
=
`
${
string
}
-
${
string
}
-
${
string
}
-
${
string
}
-
${
string
}
`
;
export
type
Namespace
=
UUID
;