UNPKG

victory-native

Version:

[![Victory Native](https://oss.nearform.com/api/banner?badge=victory&text=victory+native&bg=9c2f1e)](https://commerce.nearform.com/open-source/victory-native/)

13 lines (12 loc) 567 B
import { type ComposedGesture, type GestureType } from "react-native-gesture-handler"; import { type SkRect } from "@shopify/react-native-skia"; import * as React from "react"; import { type ChartTransformState } from "../cartesian/hooks/useChartTransformState"; type GestureHandlerProps = { gesture: ComposedGesture | GestureType; dimensions: SkRect; transformState?: ChartTransformState; debug?: boolean; }; export declare const GestureHandler: ({ gesture, dimensions, transformState, debug, }: GestureHandlerProps) => React.JSX.Element; export {};