UNPKG

reaviz

Version:

Data Visualization using React

7 lines (6 loc) 292 B
export type InterpolationTypes = 'linear' | 'smooth' | 'step'; export type RadialInterpolationTypes = 'linear' | 'smooth'; /** * Helper function for interpolation. */ export declare function interpolate(type: InterpolationTypes | RadialInterpolationTypes): import('d3-shape').CurveFactory;