* @param {object} dispatchConfig Configuration used to dispatch this event. * @param {string} dispatchMarker Marker identifying the event target. * @param {object} nativeEvent Native browser event. * @extends {SyntheticUIEvent}
(dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget)
| 15587 | * @extends {SyntheticUIEvent} |
| 15588 | */ |
| 15589 | function SyntheticKeyboardEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget) { |
| 15590 | return SyntheticUIEvent.call(this, dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget); |
| 15591 | } |
| 15592 | |
| 15593 | SyntheticUIEvent.augmentClass(SyntheticKeyboardEvent, KeyboardEventInterface); |
| 15594 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…