UNPKG

@mui/x-internal-gestures

Version:

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

7 lines 368 B
import { ToBeClonable } from "./matchers/toBeClonable.js"; import { ToUpdateOptions } from "./matchers/toUpdateOptions.js"; import { ToUpdateState } from "./matchers/toUpdateState.js"; declare module 'vitest' { interface Matchers<T = any> extends GestureMatchers<T> {} } export type GestureMatchers<R = any> = ToUpdateOptions<R> & ToBeClonable<R> & ToUpdateState<R>;