victory-native
Version:
A charting library for React Native with a focus on performance and customization.
10 lines (9 loc) • 378 B
TypeScript
import type { PointsArray } from "../../types";
import type { CurveType } from "../utils/curves";
export type AreaPathOptions = {
curveType?: CurveType;
connectMissingData?: boolean;
};
export declare const useAreaPath: (points: PointsArray, y0: number, { curveType, connectMissingData }?: AreaPathOptions) => {
path: import("@shopify/react-native-skia").SkPath;
};