UNPKG

react-native-chart-kit

Version:

Beautiful React Native charts for dashboards, reports, and data-rich mobile apps.

16 lines 693 B
import type { LayoutDebugModel } from "../../../core/index"; import type { LineChartYAxisLabelModel } from "./axisLabels"; import type { LineChartModel } from "./useChartModel"; export declare const useLineChartDebugLayout: <TData extends Record<string, unknown>>({ enabled, model, onLayoutDebug, tooltip, yAxisLabels }: { enabled: boolean; model: LineChartModel<TData>; onLayoutDebug?: ((model: LayoutDebugModel) => void) | undefined; tooltip?: { height: number; width: number; x: number; y: number; } | undefined; yAxisLabels: LineChartYAxisLabelModel[]; }) => LayoutDebugModel | undefined; //# sourceMappingURL=useDebugLayout.d.ts.map