From dfdd476ac9aed092e600537bc77af25aec25a974 Mon Sep 17 00:00:00 2001 From: Ibrahim Hadeed Date: Sat, 30 Apr 2016 17:52:14 -0400 Subject: [PATCH] pre-final plugin rewrite --- src/plugins/contacts.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/plugins/contacts.ts b/src/plugins/contacts.ts index e280aa124..869bf74e7 100644 --- a/src/plugins/contacts.ts +++ b/src/plugins/contacts.ts @@ -1,7 +1,6 @@ import {Plugin, Cordova, InstanceProperty, CordovaInstance} from './plugin'; declare var window: any = { ContactAddress: (...args) => {}, - ContactProperties: (...args) => {}, ContactOrganization: (...args) => {}, ContactName: (...args) => {}, ContactField: (...args) => {}, @@ -38,7 +37,7 @@ export interface IContactProperties { urls?: IContactField[]; } -export class Contact { +export class Contact implements IContactProperties { private _objectInstance: any;