UNPKG

@materia-dex/sdk

Version:

An SDK for building applications on top of Materia.

7 lines (6 loc) 315 B
import { Rounding } from '../../constants'; import { Fraction } from './fraction'; export declare class Percent extends Fraction { toSignificant(significantDigits?: number, format?: object, rounding?: Rounding): string; toFixed(decimalPlaces?: number, format?: object, rounding?: Rounding): string; }