(ControllerState)
| 90506 | }; |
| 90507 | var TransitionManager = function() { |
| 90508 | function TransitionManager1(ControllerState) { |
| 90509 | var props = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; |
| 90510 | (0, _classCallCheckDefault.default)(this, TransitionManager1); |
| 90511 | this.ControllerState = ControllerState; |
| 90512 | this.props = Object.assign({}, DEFAULT_PROPS, props); |
| 90513 | this.propsInTransition = null; |
| 90514 | this.transition = new (0, _transitionDefault.default)(props.timeline); |
| 90515 | this.onViewStateChange = props.onViewStateChange; |
| 90516 | this._onTransitionUpdate = this._onTransitionUpdate.bind(this); |
| 90517 | } |
| 90518 | (0, _createClassDefault.default)(TransitionManager1, [ |
| 90519 | { |
| 90520 | key: "finalize", |
nothing calls this directly
no outgoing calls
no test coverage detected