UNPKG

@mui/x-internal-gestures

Version:

The core engine of GestureEvents, a modern and robust multi-pointer gesture detection library for JavaScript.

5 lines 264 B
import type { Direction } from "../gestures/PanGesture.js"; /** * Check if a direction matches one of the allowed directions */ export declare function isDirectionAllowed(direction: Direction, allowedDirections: Array<'up' | 'down' | 'left' | 'right'>): boolean;