chore(tslint): add tslint & clean up code

This commit is contained in:
Ibrahim Hadeed
2016-04-29 23:56:49 -04:00
parent 8b6d9f33f6
commit 06146b322f
58 changed files with 1014 additions and 941 deletions
+6 -6
View File
@@ -18,21 +18,21 @@ export class WebIntent {
}
@Cordova()
static startActivity (options : {action:any,url:string}) : Promise<any> {return}
static startActivity (options: {action: any, url: string}): Promise<any> {return; }
@Cordova()
static hasExtra (extra : any) : Promise<any> {return}
static hasExtra (extra: any): Promise<any> {return; }
@Cordova()
static getExtra (extra : any) : Promise<any> {return}
static getExtra (extra: any): Promise<any> {return; }
@Cordova()
static getUri () : Promise<string> {return};
static getUri (): Promise<string> {return; };
@Cordova()
static onNewIntent() : Promise<string> {return};
static onNewIntent(): Promise<string> {return; };
@Cordova()
static sendBroadcast(options : {action:string, extras?:{option:boolean}}) : Promise<any> {return}
static sendBroadcast(options: {action: string, extras?: {option: boolean}}): Promise<any> {return; }
}