UNPKG

@topgroup/diginext

Version:

A BUILD SERVER & CLI to deploy apps to any Kubernetes clusters.

14 lines 341 B
export type HumanizeNumberOptions = { /** * @example 1000 => 1,000 * @default "," */ delimiter?: string; /** * @example 1.1 * @default "." */ separator?: string; }; export declare function humanizeNumber(n: number, options?: HumanizeNumberOptions): string; //# sourceMappingURL=humanize.d.ts.map