UNPKG

ui-router-core

Version:

UI-Router Core: Framework agnostic, State-based routing for JavaScript Single Page Apps

20 lines 539 B
/** * # Core classes and interfaces * * The classes and interfaces that are core to ui-router and do not belong * to a more specific subsystem (such as resolve). * * @coreapi * @preferred * @module core */ /** for typedoc */ "use strict"; /** @internalapi */ var UIRouterPluginBase = (function () { function UIRouterPluginBase() { } UIRouterPluginBase.prototype.dispose = function (router) { }; return UIRouterPluginBase; }()); exports.UIRouterPluginBase = UIRouterPluginBase; //# sourceMappingURL=interface.js.map