ui-router-core
Version:
UI-Router Core: Framework agnostic, State-based routing for JavaScript Single Page Apps
19 lines • 507 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;
}());
export { UIRouterPluginBase };
//# sourceMappingURL=interface.js.map