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
+3 -3
View File
@@ -224,7 +224,7 @@ export class Contacts {
@Cordova({
sync: true
})
static create(options: ContactProperties){
static create(options: ContactProperties) {
return new Contact();
};
@@ -249,7 +249,7 @@ export class Contacts {
successIndex: 1,
errorIndex: 2
})
static find(fields: string[], options?: any): Promise<any> { return }
static find(fields: string[], options?: any): Promise<any> { return; }
/**
@@ -257,5 +257,5 @@ export class Contacts {
* @return Returns a Promise that resolves with the selected Contact
*/
@Cordova()
static pickContact(): Promise<any> { return }
static pickContact(): Promise<any> { return; }
}