transition is an optional parameter.

This commit is contained in:
Roman Nikitin
2013-04-08 17:51:39 +07:00
parent f633eb2348
commit bcd11d7234

View File

@@ -64,7 +64,7 @@ declare module "durandal/app" {
* @param transition If you have a splash screen, you may want to specify an optional transition to animate from the splash to your main shell.
* @param applicationHost parameter is optional. If provided it should be an element id for the node into which the UI should be composed. If it is not provided the default is to look for an element with an id of "applicationHost".
*/
export var setRoot: (root: any, transition: string, applicationHost?: string) => void;
export var setRoot: (root: any, transition?: string, applicationHost?: string) => void;
/**
* If you intend to run on mobile, you should also call app.adaptToDevice() before setting the root.
*/