Skip to content

Latest commit

 

History

History
70 lines (46 loc) · 1.59 KB

README.md

File metadata and controls

70 lines (46 loc) · 1.59 KB

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[]