reaviz
Version:
Data Visualization using React
8 lines (6 loc) • 584 B
TypeScript
import { default as bigInt } from 'big-integer';
import { ChartDataTypes, ChartInternalDataTypes, ChartNestedDataShape, ChartShallowDataShape } from './types';
export declare function normalizeValue(value: ChartDataTypes, maxBigInt: bigInt.BigInteger): ChartInternalDataTypes;
export declare function normalizeValueForFormatting(value: ChartDataTypes): ChartInternalDataTypes;
export declare function getMaxBigIntegerForNested(series: ChartNestedDataShape[]): bigInt.BigInteger;
export declare function getMaxBigIntegerForShallow(series: ChartShallowDataShape[]): bigInt.BigInteger;