fix(launch-navigator): fix navigate method (#1940)

This commit is contained in:
mflynnKVD 2017-09-27 17:48:23 -04:00 committed by Ibby Hadeed
parent 4246d47a6c
commit a150d4d522

View File

@ -313,8 +313,8 @@ export class LaunchNavigator extends IonicNativePlugin {
* @returns {Promise<any>}
*/
@Cordova({
successIndex: 1,
errorIndex: 2
successIndex: 2,
errorIndex: 3
})
navigate(destination: string | number[], options?: LaunchNavigatorOptions): Promise<any> { return; }