@nativescript/contacts
Version:
Easy access to iOS and Android contact directory. Pick a contact, update date, or add a new one!
38 lines • 932 B
JavaScript
export class ContactCommon {
constructor() {
this.id = '';
this.name = {
given: '',
middle: '',
family: '',
prefix: '',
suffix: '',
displayname: '',
phonetic: {
given: '',
middle: '',
family: '',
},
};
this.organization = {
name: '',
jobTitle: '',
department: '',
symbol: '',
phonetic: '',
location: '',
type: '',
};
this.nickname = '';
this.notes = '';
this.photo = null;
this.urls = [];
this.phoneNumbers = [];
this.emailAddresses = [];
this.postalAddresses = [];
}
initializeFromNative(nativeData, contactFields) { }
save() { }
delete() { }
}
//# sourceMappingURL=contact.common.js.map