Update durandal.d.ts

This commit is contained in:
Kenneth Brubaker
2013-04-04 20:06:58 -03:00
parent 5ee878b0e9
commit df95007ef0

View File

@@ -376,6 +376,10 @@ declare module "durandal/plugins/router" {
* called after an a new module is composed
*/
export var afterCompose: () => void;
/**
* Returns the activatable instance from the supplied module.
*/
export var getActivatableInstance: (routeInfo: routeInfo, params: any, module: any) => any;
/**
* Causes the router to move backwards in page history.
*/
@@ -449,4 +453,4 @@ interface IEventSubscription
* This function removing current subscription from event handlers
*/
off(): void;
}
}