/**1* @license2* Copyright The Closure Library Authors.3* SPDX-License-Identifier: Apache-2.04*/56/**7* @fileoverview Legacy stub for the goog.fx namespace. Requires the moved8* namespaces. Animation and easing have been moved to animation.js and9* easing.js. Users of this stub should move off so we may remove it in the10* future.11*12* @suppress {extraRequire} All the requires in this file are "extra"13* because this file is not actually using them.14*/1516goog.provide('goog.fx');1718goog.require('goog.asserts');19goog.require('goog.fx.Animation');20goog.require('goog.fx.Animation.EventType');21goog.require('goog.fx.Animation.State');22goog.require('goog.fx.AnimationEvent');23goog.require('goog.fx.Transition.EventType');24goog.require('goog.fx.easing');252627