Skip to content

Commit

Permalink
fix(build): fix build errors (#1472)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielsogl authored and ihadeed committed May 5, 2017
1 parent 78e19e5 commit 8a445e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/@ionic-native/plugins/contacts/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export class Contact implements IContactProperties {

@InstanceCheck()
clone(): Contact {
let newContact = new Contact();
let newContact: any = new Contact();
for (let prop in this) {
if (prop === 'id') return;
newContact[prop] = this[prop];
Expand Down

0 comments on commit 8a445e9

Please sign in to comment.