victory-native
Version:
[](https://commerce.nearform.com/open-source/victory-native/)
10 lines (9 loc) • 366 B
TypeScript
import type { PointsArray } from "../../types";
import { type CurveType } from "../utils/curves";
export type LinePathOptions = {
curveType?: CurveType;
connectMissingData?: boolean;
};
export declare const useLinePath: (points: PointsArray, { curveType, connectMissingData }?: LinePathOptions) => {
path: import("@shopify/react-native-skia").SkPath;
};