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
/
dist
/
types.d.ts
3 lines
(2 loc)
•
102 B
TypeScript
View Raw
1
2
3
export
type
UUID
=
`
${
string
}
-
${
string
}
-
${
string
}
-
${
string
}
-
${
string
}
`
;
export
type
Namespace
=
UUID
;