{"version":3,"sources":["node_modules\\react-dom\\lib\\SyntheticCompositionEvent.js"],"names":["SyntheticEvent","require","CompositionEventInterface","data","SyntheticCompositionEvent","dispatchConfig","dispatchMarker","nativeEvent","nativeEventTarget","call","augmentClass","module","exports"],"mappings":";;;;;;;;;;AAUA;;AAEA,GAAIA,gBAAiBC,QAAQ,kBAAR,CAArB;;;;;;AAMA,GAAIC,2BAA4B;AAC9BC,KAAM,IADwB,CAAhC;;;;;;;;;AAUA,QAASC,0BAAT,CAAmCC,cAAnC,CAAmDC,cAAnD,CAAmEC,WAAnE,CAAgFC,iBAAhF,CAAmG;AACjG,MAAOR,gBAAeS,IAAf,CAAoB,IAApB,CAA0BJ,cAA1B,CAA0CC,cAA1C,CAA0DC,WAA1D,CAAuEC,iBAAvE,CAAP;AACD;;AAEDR,eAAeU,YAAf,CAA4BN,yBAA5B,CAAuDF,yBAAvD;;AAEAS,OAAOC,OAAP,CAAiBR,yBAAjB","file":"SyntheticCompositionEvent.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/DOM-Level-3-Events/#events-compositionevents\n */\nvar CompositionEventInterface = {\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 SyntheticCompositionEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget) {\n  return SyntheticEvent.call(this, dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget);\n}\n\nSyntheticEvent.augmentClass(SyntheticCompositionEvent, CompositionEventInterface);\n\nmodule.exports = SyntheticCompositionEvent;"]}