UNPKG

i18n-js

Version:

A small library to provide I18n on JavaScript.

10 lines (9 loc) 299 B
import { BigNumber } from "bignumber.js"; import { RoundingMode } from "../typing"; type RoundingOptions = { roundMode: RoundingMode; precision: number | null; significant: boolean; }; export declare function roundNumber(numeric: BigNumber, options: RoundingOptions): string; export {};