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
/
services
/
uuid-generator.service.d.ts
6 lines
(5 loc)
•
257 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
UuidService
as
UuidServiceContract
,
UuidServiceOptions
}
from
'../contracts/uuid.service'
;
export
declare
class
UuidService
implements
UuidServiceContract
{
generate
(
options
?:
UuidServiceOptions
):
string
;
validate
(
uuid
:
string
):
boolean
; }