react-native-chart-kit
Version:
Beautiful React Native charts for dashboards, reports, and data-rich mobile apps.
8 lines • 533 B
TypeScript
import type { GeometryPoint, LinePathDecimationConfig } from "./types";
export declare const splitLinePathSegments: <TPoint extends GeometryPoint = GeometryPoint>(points: TPoint[], connectNulls?: boolean) => TPoint[][];
export declare const getDecimatedLinePathSegments: <TPoint extends GeometryPoint = GeometryPoint>({ connectNulls, decimation, points }: {
connectNulls?: boolean;
decimation?: false | LinePathDecimationConfig | undefined;
points: TPoint[];
}) => TPoint[][];
//# sourceMappingURL=lineDecimation.d.ts.map