Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Uuid.FormatOptions

import type { Uuid } from "https://raw.githubusercontent.com/i-xi-dev/uuid.es/3.2.2/mod.ts"; 

const { FormatOptions } = Uuid;

The object with the following optional fields.

type FormatOptions = {
upperCase?: boolean;
noHyphens?: boolean;
}
;

§Type

§
{
upperCase?: boolean;
noHyphens?: boolean;
}
[src]