fix(router): update dts files

This commit is contained in:
vsavkin
2016-07-28 14:36:05 -07:00
parent bb8b82b3f5
commit 81d27daf0d
2 changed files with 17 additions and 3 deletions

View File

@ -131,9 +131,21 @@ export declare type ResolveData = {
/** @stable */
export interface Route {
canActivate?: any[];
canActivateChild?: any[];
canDeactivate?: any[];
canLoad?: any[];
children?: Route[];
component?: Type | string;
data?: Data;
loadChildren?: string;
outlet?: string;
path?: string;
pathMatch?:
pathMatch?: string;
redirectTo?: string;
resolve?: ResolveData;
/** @deprecated */ terminal?: boolean;
}
/** @stable */
export declare class Router {