UNPKG

ulid-uuid-converter

Version:

A tiny zero dependency library for ULID to UUID conversion and vice versa

13 lines (11 loc) 486 B
type NullOnInvalidInput = { nullOnInvalidInput: true; }; type ThrowOnInvalidInput = { nullOnInvalidInput: false; }; declare function UUIDtoULID(ulid: string, opts?: ThrowOnInvalidInput): string; declare function UUIDtoULID(ulid: string, opts: NullOnInvalidInput): string | null; declare function ULIDtoUUID(ulid: string, opts?: ThrowOnInvalidInput): string; declare function ULIDtoUUID(ulid: string, opts: NullOnInvalidInput): string | null; export { ULIDtoUUID, UUIDtoULID };