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

LocaleWidth

The format width. Defines how short or long the formatted string might be. The actaul result length depends on the locale.

type LocaleWidth =
| "narrow"
| "short"
| "abbreviated"
| "wide"
| "any";

§Type

§
"narrow" | "short" | "abbreviated" | "wide" | "any"
[src]