react-selectable-fast
Version:
Enable other React components to be selectable by drawing a box with your mouse/touch
10 lines (9 loc) • 355 B
TypeScript
import { MouseEvent } from 'react';
declare type TDetectMouseButtonOptions = {
allowAltClick?: boolean;
allowCtrlClick?: boolean;
allowMetaClick?: boolean;
allowShiftClick?: boolean;
};
export declare function detectMouseButton(evt: MouseEvent<HTMLElement>, buttonNumber?: number, options?: TDetectMouseButtonOptions): boolean;
export {};