UNPKG

@base-ui-components/react

Version:

Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.

16 lines 387 B
type Touches = Array<Pick<Touch, 'identifier' | 'clientX' | 'clientY'>>; export declare function createTouches(touches: Touches): { changedTouches: Touch[]; }; export declare function getHorizontalSliderRect(width?: number): { width: number; height: number; bottom: number; left: number; x: number; y: number; top: number; right: number; toJSON(): void; }; export {};