ui-router-core
Version:
UI-Router Core: Framework agnostic, State-based routing for JavaScript Single Page Apps
20 lines • 539 B
JavaScript
/**
* # 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 */
;
/** @internalapi */
var UIRouterPluginBase = (function () {
function UIRouterPluginBase() {
}
UIRouterPluginBase.prototype.dispose = function (router) { };
return UIRouterPluginBase;
}());
exports.UIRouterPluginBase = UIRouterPluginBase;
//# sourceMappingURL=interface.js.map