my contact plugin for ionic(test only)
npm install myp-contactmy contact plugin for ionic(test only)
``bash`
npm install myp-contact
npx cap sync
* echo(...)
* getPermissions()
* getGroups()
* getContacts()
* Interfaces
`typescript`
echo(options: { value: string; }) => any
| Param | Type |
| ------------- | ------------------------------- |
| options | { value: string; } |
Returns: any
--------------------
`typescript`
getPermissions() => any
Returns: any
--------------------
`typescript`
getGroups() => any
Returns: any
--------------------
`typescript`
getContacts() => any
Returns: any
--------------------
#### PermissionStatus
| Prop | Type |
| ------------- | -------------------- |
| granted | boolean |
#### Groups
| Prop | Type |
| --------------------- | ------------------- |
| groupId | string |
| accountType | string |
| accountName | string |
| title | string |
| count | string |
| countWithPhones | string |
#### Contact
| Prop | Type |
| ---------------------- | ------------------- |
| contactId | string |
| displayName | string |
| phoneNumbers | {} |
| emails | {} |
| photoThumbnail | string |
| organizationName | string |
| organizationRole | string |
| birthday | string |
#### PhoneNumber
| Prop | Type |
| ------------ | ------------------- |
| label | string |
| number | string |
#### EmailAddress
| Prop | Type |
| ------------- | ------------------- |
| label | string |
| address` | string |