Skip to content

Commit

Permalink
fix(launchnavigator): start parameter is optional
Browse files Browse the repository at this point in the history
closes #87
  • Loading branch information
ihadeed committed Mar 27, 2016
1 parent 5c17ec7 commit 5e7378a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/launchnavigator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export class LaunchNavigator {
})
static navigate(
destination: any,
start: any,
start?: any = null,
options?: launchNavigatorOptions
): Promise<any> { return }

Expand Down

3 comments on commit 5e7378a

@keithdmoore
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

src/plugins/launchnavigator.ts(87,5): error TS1015: Parameter cannot have question mark and initializer.

@ihadeed
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for pointing it out @keithdmoore. Build is passing now.

@keithdmoore
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ihadeed No problem. I couldn't help but notice. LOL

Please sign in to comment.