| 209 | }; |
| 210 | |
| 211 | export interface KonvaEventObject<EventType, This = Node> { |
| 212 | type: string; |
| 213 | target: Shape | Stage; |
| 214 | evt: EventType; |
| 215 | pointerId: number; |
| 216 | currentTarget: This; |
| 217 | cancelBubble: boolean; |
| 218 | child?: Node; |
| 219 | } |
| 220 | |
| 221 | export type KonvaEventListener<This, EventType> = ( |
| 222 | this: This, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…