mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-06 04:58:25 -04:00
5 lines
303 B
TypeScript
5 lines
303 B
TypeScript
import { PointerOptions } from './utils';
|
|
declare function hover(element: Element, init?: MouseEventInit, { skipPointerEventsCheck }?: PointerOptions): void;
|
|
declare function unhover(element: Element, init?: MouseEventInit, { skipPointerEventsCheck }?: PointerOptions): void;
|
|
export { hover, unhover };
|