chore(): tslint

This commit is contained in:
Ibby 2017-01-07 07:59:06 -05:00
parent d192dee1ee
commit 9a5a62bc3a
2 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@ export class Market {
successName: 'success', successName: 'success',
errorName: 'failure' errorName: 'failure'
}) })
static open(appId: string): Promise<any> { return } static open(appId: string): Promise<any> { return; }
/** /**
* Search apps by keyword * Search apps by keyword
@ -43,6 +43,6 @@ export class Market {
errorName: 'failure', errorName: 'failure',
platforms: ['Android'] platforms: ['Android']
}) })
static search(keyword: string): Promise<any> { return } static search(keyword: string): Promise<any> { return; }
} }

View File

@ -130,7 +130,7 @@ function callCordovaPlugin(pluginObj: any, methodName: string, args: any[], opts
} catch (e) { } catch (e) {
value = { value = {
error: 'cordova_not_available' error: 'cordova_not_available'
} };
} }
return value; return value;
} }