UNPKG
nestjs-uuid
Version:
latest (0.1.4)
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
0.0.61--dev
0.0.6
0.0.6--dev
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
A NestJS module for generating UUIDs
github.com/NestJS-Libs/nestjs-uuid
NestJS-Libs/nestjs-uuid
nestjs-uuid
/
dist
/
lib
/
contracts
/
uuid.service.d.ts
8 lines
(7 loc)
•
191 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
export
interface
UuidService
{
generate
(
options
?:
UuidServiceOptions
):
string
;
validate
(
uuid
:
string
):
boolean
; }
export
interface
UuidServiceOptions
{
readonly
version
:
1
|
4
; }