@nadavhalfon/capacitor-native-contacts
v6.0.0
Published
Capacitor plugin for picking contact from native contacts list
Readme
capacitor-native-contacts
Capacitor plugin for picking contact from native contacts list
Install
npm install capacitor-native-contacts
npx cap syncAPI
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[] |
