echo-gt
v0.0.1
Published
Just a Test for Basic Plugin Development
Downloads
1
Readme
echo-gt
Just a Test for Basic Plugin Development
Install
npm install echo-gt
npx cap sync
API
echo(...)
echo(options: { value: string; }) => Promise<{ value: string; }>
| Param | Type |
| ------------- | ------------------------------- |
| options
| { value: string; } |
Returns: Promise<{ value: string; }>
storeContact(...)
storeContact(options: ContactData) => Promise<{ value: storeContactResponse; }>
| Param | Type |
| ------------- | --------------------------------------------------- |
| options
| ContactData |
Returns: Promise<{ value: storeContactResponse; }>
Interfaces
storeContactResponse
| Prop | Type |
| -------------- | --------------------------------------------------- |
| added
| boolean |
| id
| string |
| callData
| ContactData |
ContactData
| Prop | Type |
| --------------- | ------------------- |
| name
| string |
| address
| any |
| telephone
| string |