fybdp-d3-kg
Version:
Knowledge Graph using React and D3.js
7 lines (6 loc) • 574 B
TypeScript
import 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;