UNPKG

victory-native

Version:

A charting library for React Native with a focus on performance and customization.

11 lines (10 loc) 327 B
import type { PointsArray } from "../../types"; type Point = PointsArray[number]; export type HorizontalBarRect = { x: number; y: number; width: number; height: number; }; export declare const getHorizontalBarRect: (point: Point, baselineX: number, barThickness: number) => HorizontalBarRect | null; export {};