Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/router / dist / deps / routes.d.ts
Size: Mime:
import { RoutePathObjType } from '../typings';
declare const routePathCurrent: {
    path: string;
    exact: boolean;
    strict: boolean;
};
/**
 * @modifies routePaths
 */
declare const routeToAttributes: (route: RoutePathObjType) => {
    key: string;
    path: string;
    component: any;
};
export { routeToAttributes, routePathCurrent };