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

BytesFormat.Options

import type { BytesFormat } from "https://raw.githubusercontent.com/i-xi-dev/bytes.es/4.4.2/deps.ts"; 

const { Options } = BytesFormat;

The object with the following optional fields.

type Options = {
radix?: Radix;
minIntegralDigits?: number;
lowerCase?: boolean;
prefix?: string;
suffix?: string;
separator?: string;
}
;

§Type

§
{
radix?: Radix;
minIntegralDigits?: number;
lowerCase?: boolean;
prefix?: string;
suffix?: string;
separator?: string;
}
[src]