@plasma-fi/sdk
Version:
🛠An SDK for building dapp on PlasmaSwap.
8 lines (7 loc) • 346 B
TypeScript
import { Rounding } from '../constants/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;
toExact(): string;
}