victory-native
Version:
A charting library for React Native with a focus on performance and customization.
11 lines (10 loc) • 426 B
TypeScript
import { type ComposedGesture, type GestureType } from "react-native-gesture-handler";
import * as React from "react";
import type { GestureHandlerConfig } from "../types";
type GestureHandlerProps = {
gesture: ComposedGesture | GestureType;
debug?: boolean;
config?: GestureHandlerConfig;
};
export declare const GestureHandler: ({ gesture, debug, config, }: GestureHandlerProps) => React.JSX.Element;
export {};