refactor(router): misc refactoring (#13330)

This commit is contained in:
Victor Berchet
2016-12-09 10:44:46 -08:00
committed by GitHub
parent 56c361ff6a
commit b5c4bf1c59
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;
}