{"version":3,"sources":["node_modules\\react-dom\\lib\\SyntheticAnimationEvent.js"],"names":["SyntheticEvent","require","AnimationEventInterface","animationName","elapsedTime","pseudoElement","SyntheticAnimationEvent","dispatchConfig","dispatchMarker","nativeEvent","nativeEventTarget","call","augmentClass","module","exports"],"mappings":";;;;;;;;;;AAUA;;AAEA,GAAIA,gBAAiBC,QAAQ,kBAAR,CAArB;;;;;;;AAOA,GAAIC,yBAA0B;AAC5BC,cAAe,IADa;AAE5BC,YAAa,IAFe;AAG5BC,cAAe,IAHa,CAA9B;;;;;;;;;AAYA,QAASC,wBAAT,CAAiCC,cAAjC,CAAiDC,cAAjD,CAAiEC,WAAjE,CAA8EC,iBAA9E,CAAiG;AAC/F,MAAOV,gBAAeW,IAAf,CAAoB,IAApB,CAA0BJ,cAA1B,CAA0CC,cAA1C,CAA0DC,WAA1D,CAAuEC,iBAAvE,CAAP;AACD;;AAEDV,eAAeY,YAAf,CAA4BN,uBAA5B,CAAqDJ,uBAArD;;AAEAW,OAAOC,OAAP,CAAiBR,uBAAjB","file":"SyntheticAnimationEvent.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/css3-animations/#AnimationEvent-interface\n * @see https://developer.mozilla.org/en-US/docs/Web/API/AnimationEvent\n */\nvar AnimationEventInterface = {\n  animationName: 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 SyntheticAnimationEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget) {\n  return SyntheticEvent.call(this, dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget);\n}\n\nSyntheticEvent.augmentClass(SyntheticAnimationEvent, AnimationEventInterface);\n\nmodule.exports = SyntheticAnimationEvent;"]}