Merge pull request #7658 from davidreher/angular-component-router-addons

added missing properties to Instruction interface in angular-componenent-router
This commit is contained in:
Masahiro Wakame
2016-01-24 00:13:47 +09:00

View File

@@ -36,6 +36,9 @@ declare module angular {
* ```
*/
interface Instruction {
component: ComponentInstruction;
child: Instruction;
auxInstruction: {[key: string]: Instruction};
urlPath(): string;