{"version":3,"sources":["node_modules\\react-dom\\lib\\SyntheticTransitionEvent.js"],"names":["SyntheticEvent","require","TransitionEventInterface","propertyName","elapsedTime","pseudoElement","SyntheticTransitionEvent","dispatchConfig","dispatchMarker","nativeEvent","nativeEventTarget","call","augmentClass","module","exports"],"mappings":";;;;;;;;;;AAUA;;AAEA,GAAIA,gBAAiBC,QAAQ,kBAAR,CAArB;;;;;;;AAOA,GAAIC,0BAA2B;AAC7BC,aAAc,IADe;AAE7BC,YAAa,IAFgB;AAG7BC,cAAe,IAHc,CAA/B;;;;;;;;;AAYA,QAASC,yBAAT,CAAkCC,cAAlC,CAAkDC,cAAlD,CAAkEC,WAAlE,CAA+EC,iBAA/E,CAAkG;AAChG,MAAOV,gBAAeW,IAAf,CAAoB,IAApB,CAA0BJ,cAA1B,CAA0CC,cAA1C,CAA0DC,WAA1D,CAAuEC,iBAAvE,CAAP;AACD;;AAEDV,eAAeY,YAAf,CAA4BN,wBAA5B,CAAsDJ,wBAAtD;;AAEAW,OAAOC,OAAP,CAAiBR,wBAAjB","file":"SyntheticTransitionEvent.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/2009/WD-css3-transitions-20090320/#transition-events-\n * @see https://developer.mozilla.org/en-US/docs/Web/API/TransitionEvent\n */\nvar TransitionEventInterface = {\n  propertyName: null,\n  elapsedTime: null,\n  pseudoElement: 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 {SyntheticEvent}\n */\nfunction SyntheticTransitionEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget) {\n  return SyntheticEvent.call(this, dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget);\n}\n\nSyntheticEvent.augmentClass(SyntheticTransitionEvent, TransitionEventInterface);\n\nmodule.exports = SyntheticTransitionEvent;"]}