deeplink-plugin
v0.0.21
Published
deeplinkplugin
Readme
deeplink-plugin
deeplinkplugin
Install
npm install deeplink-plugin
npx cap syncAPI
echo(...)
echo(options: { value: string; }) => Promise<{ value: string; }>| Param | Type |
| ------------- | ------------------------------- |
| options | { value: string; } |
Returns: Promise<{ value: string; }>
handleDeepLink(...)
handleDeepLink(options: { url: string; }) => Promise<{ code: string; }>| Param | Type |
| ------------- | ----------------------------- |
| options | { url: string; } |
Returns: Promise<{ code: string; }>
addListener('deepLinkSuccess', ...)
addListener(eventName: 'deepLinkSuccess', listenerFunc: (event: { value: string; }) => void) => Promise<PluginListenerHandle> & PluginListenerHandle| Param | Type |
| ------------------ | --------------------------------------------------- |
| eventName | 'deepLinkSuccess' |
| listenerFunc | (event: { value: string; }) => void |
Returns: Promise<PluginListenerHandle> & PluginListenerHandle
Interfaces
PluginListenerHandle
| Prop | Type |
| ------------ | ----------------------------------------- |
| remove | () => Promise<void> |
