{"version":3,"sources":["node_modules\\react-dom\\lib\\SyntheticInputEvent.js"],"names":["SyntheticEvent","require","InputEventInterface","data","SyntheticInputEvent","dispatchConfig","dispatchMarker","nativeEvent","nativeEventTarget","call","augmentClass","module","exports"],"mappings":";;;;;;;;;;AAUA;;AAEA,GAAIA,gBAAiBC,QAAQ,kBAAR,CAArB;;;;;;;AAOA,GAAIC,qBAAsB;AACxBC,KAAM,IADkB,CAA1B;;;;;;;;;AAUA,QAASC,oBAAT,CAA6BC,cAA7B,CAA6CC,cAA7C,CAA6DC,WAA7D,CAA0EC,iBAA1E,CAA6F;AAC3F,MAAOR,gBAAeS,IAAf,CAAoB,IAApB,CAA0BJ,cAA1B,CAA0CC,cAA1C,CAA0DC,WAA1D,CAAuEC,iBAAvE,CAAP;AACD;;AAEDR,eAAeU,YAAf,CAA4BN,mBAA5B,CAAiDF,mBAAjD;;AAEAS,OAAOC,OAAP,CAAiBR,mBAAjB","file":"SyntheticInputEvent.js","sourceRoot":"D:/Work/Office/react-native-on-web/cli/tmpl/project","sourcesContent":["/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar SyntheticEvent = require('./SyntheticEvent');\n\n/**\n * @interface Event\n * @see http://www.w3.org/TR/2013/WD-DOM-Level-3-Events-20131105\n *      /#events-inputevents\n */\nvar InputEventInterface = {\n  data: null\n};\n\n/**\n * @param {object} dispatchConfig Configuration used to dispatch this event.\n * @param {string} dispatchMarker Marker identifying the event target.\n * @param {object} nativeEvent Native browser event.\n * @extends {SyntheticUIEvent}\n */\nfunction SyntheticInputEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget) {\n  return SyntheticEvent.call(this, dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget);\n}\n\nSyntheticEvent.augmentClass(SyntheticInputEvent, InputEventInterface);\n\nmodule.exports = SyntheticInputEvent;"]}