UNPKG

victory-native

Version:

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

13 lines (12 loc) 437 B
import type { PointsArray } from "../../types"; import type { HorizontalBarRect } from "./getHorizontalBarRect"; type Point = PointsArray[number]; export declare const getHorizontalBarGroupRect: ({ point, baselineX, barWidth, groupWidth, gapWidth, barIndex, }: { point: Point; baselineX: number; barWidth: number; groupWidth: number; gapWidth: number; barIndex: number; }) => HorizontalBarRect | null; export {};