victory-native
Version:
A charting library for React Native with a focus on performance and customization.
11 lines (10 loc) • 321 B
TypeScript
import type { PointsArray } from "../../types";
type Point = PointsArray[number];
export type VerticalBarRect = {
x: number;
y: number;
width: number;
height: number;
};
export declare const getVerticalBarRect: (point: Point, baselineY: number, barThickness: number) => VerticalBarRect | null;
export {};