You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
535 B
16 lines
535 B
2 years ago
|
/**
|
||
|
* Options that can be passed to any event that relies
|
||
|
* on pointer-events property
|
||
|
*/
|
||
|
export declare interface PointerOptions {
|
||
|
/**
|
||
|
* When set to `true` the event skips checking if any element
|
||
|
* in the DOM-tree has `'pointer-events: none'` set. This check is
|
||
|
* costly in general and very costly when rendering large DOM-trees.
|
||
|
* Can be used to speed up tests.
|
||
|
* Default: `false`
|
||
|
* */
|
||
|
skipPointerEventsCheck?: boolean;
|
||
|
}
|
||
|
export declare function hasPointerEvents(element: Element): boolean;
|