Skip to content

Instantly share code, notes, and snippets.

View pralhadstha's full-sized avatar

Pralhad Kumar Shrestha pralhadstha

View GitHub Profile
@klinki
klinki / RouteLinkProviderService.ts
Created December 13, 2016 13:43
RouteLinkProviderService - service which maps component into its route
import {Routes, Route} from "@angular/router";
import {Injectable} from "@angular/core";
@Injectable()
export class RouteLinkProviderService {
protected routes: Routes;
protected routesByComponents = new Map<any, any>();
constructor(routes: Routes) {