+1
@@ -0,0 +1 @@
|
||||
export declare function hasViewportRelativeCoordinates(event: Event): event is Event & Pick<PointerEvent, 'clientX' | 'clientY'>;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
export { hasViewportRelativeCoordinates } from './hasViewportRelativeCoordinates';
|
||||
export { isKeyboardEvent } from './isKeyboardEvent';
|
||||
export { isTouchEvent } from './isTouchEvent';
|
||||
+1
@@ -0,0 +1 @@
|
||||
export declare function isKeyboardEvent(event: Event | undefined | null): event is KeyboardEvent;
|
||||
+1
@@ -0,0 +1 @@
|
||||
export declare function isTouchEvent(event: Event | undefined | null): event is TouchEvent;
|
||||
Reference in New Issue
Block a user