capacitor-native-contacts
Capacitor plugin for picking contact from native contacts list
Install
npm install capacitor-native-contacts
npx cap sync
API
echo(...)
echo(options: { value: string; }) => Promise<{ value: string; }>
Param | Type |
---|
options | { value: string; } |
Returns: Promise<{ value: string; }>
open()
open() => Promise<{ value: Contact | null; }>
Returns: Promise<{ value: Contact | null; }>
Interfaces
Contact
Prop | Type |
---|
identifier | string |
fullName | string |
givenName | string |
familyName | string |
nickname | string |
jobTitle | string |
departmentName | string |
organizationName | string |
note | string |
phoneNumbers | string[] |
emailAddresses | string[] |