Spaces:
Paused
Paused
File size: 451 Bytes
b1bbd1e | 1 2 3 4 5 6 7 8 9 | import { PointerOptions } from './utils';
export declare interface clickOptions {
skipHover?: boolean;
clickCount?: number;
}
declare function click(element: Element, init?: MouseEventInit, { skipHover, clickCount, skipPointerEventsCheck, }?: clickOptions & PointerOptions): void;
declare function dblClick(element: Element, init?: MouseEventInit, { skipPointerEventsCheck }?: clickOptions & PointerOptions): void;
export { click, dblClick };
|