UNPKG

nestjs-uuid

Version:
8 lines (7 loc) 191 B
export interface UuidService { generate(options?: UuidServiceOptions): string; validate(uuid: string): boolean; } export interface UuidServiceOptions { readonly version: 1 | 4; }