refactor(router): misc refactoring (#13330)

This commit is contained in:
Victor Berchet
2016-12-09 10:44:46 -08:00
parent c8c1f22f9c
commit c0b001a6af
13 changed files with 217 additions and 411 deletions

View File

@ -366,13 +366,13 @@ export declare abstract class UrlHandlingStrategy {
/** @stable */
export declare class UrlSegment {
parameters: {
[key: string]: string;
[name: string]: string;
};
path: string;
constructor(
path: string,
parameters: {
[key: string]: string;
[name: string]: string;
});
toString(): string;
}