uuid.d.ts 280 B

12345678
  1. import type { BytesLike } from "./index.js";
  2. /**
  3. * Returns the version 4 [[link-uuid]] for the %%randomBytes%%.
  4. *
  5. * @see: https://www.ietf.org/rfc/rfc4122.txt (Section 4.4)
  6. */
  7. export declare function uuidV4(randomBytes: BytesLike): string;
  8. //# sourceMappingURL=uuid.d.ts.map