UNPKG

1.48 kBTypeScriptView Raw
1export { Band } from './scales/band';
2export { Ordinal } from './scales/ordinal';
3export { Constant } from './scales/constant';
4export { Identity } from './scales/identity';
5export { Linear } from './scales/linear';
6export { Point } from './scales/point';
7export { Pow } from './scales/pow';
8export { Sqrt } from './scales/sqrt';
9export { Threshold } from './scales/threshold';
10export { Log } from './scales/log';
11export { Quantize } from './scales/quantize';
12export { Quantile } from './scales/quantile';
13export { Time } from './scales/time';
14export { Base } from './scales/base';
15export { Continuous } from './scales/continuous';
16export { d3Ticks } from './tick-methods/d3-ticks';
17export { rPretty } from './tick-methods/r-pretty';
18export { wilkinsonExtended } from './tick-methods/wilkinson-extended';
19export { d3Log } from './tick-methods/d3-log';
20export { d3Time } from './tick-methods/d3-time';
21export type { BaseOptions, BandOptions, OrdinalOptions, ContinuousOptions, ConstantOptions, IdentityOptions, LinearOptions, PointOptions, PowOptions, TimeOptions, ThresholdOptions, QuantizeOptions, SqrtOptions, QuantileOptions, LogOptions, } from './types';
22export type { TickMethod, Interpolate, Comparator, Interpolates } from './types';
23export { DURATION_SECOND, DURATION_MINUTE, DURATION_HOUR, DURATION_DAY, DURATION_WEEK, DURATION_YEAR, DURATION_MONTH, } from './utils';
24export { createInterpolateNumber, createInterpolateValue, createInterpolateColor } from './utils';