bigfloat.js
Version:
A library for arbitrary precision floating point arithmetic.
14 lines (13 loc) • 310 B
TypeScript
import JSBI from "jsbi";
export interface IBigFloat {
coefficient: JSBI;
exponent: number;
}
export declare type NumericValue = string | number | IBigFloat | JSBI;
export declare type TokenArray = Array<{
type: string;
value: string | IBigFloat;
} | {
type: string;
value: boolean;
}>;