| 37 | const PointerEventsCheck = Symbol('Last check for pointer-events') |
| 38 | declare global { |
| 39 | interface Element { |
| 40 | [PointerEventsCheck]?: { |
| 41 | [k in ApiLevel]?: object |
| 42 | } & { |
| 43 | result: ReturnType<typeof closestPointerEventsDeclaration> |
| 44 | } |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | function checkPointerEvents(instance: Instance, element: Element) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…