UNPKG

bigfloat-esnext

Version:

A library for arbitrary precision floating point arithmetic.

13 lines (12 loc) 289 B
export interface IBigFloat { coefficient: bigint; exponent: number; } export declare type NumericValue = string | number | IBigFloat | bigint; export declare type TokenArray = Array<{ type: string; value: string | IBigFloat; } | { type: string; value: boolean; }>;