An open API service indexing awesome lists of open source software.

https://github.com/aeharding/capacitor-launch-native


https://github.com/aeharding/capacitor-launch-native

Last synced: 6 months ago
JSON representation

Awesome Lists containing this project

README

          

# capacitor-launch-native

Launch an app natively, if it exists

## Install

```bash
npm install capacitor-launch-native
npx cap sync
```

## API

* [`attempt(...)`](#attempt)

### attempt(...)

```typescript
attempt(options: { url: string; }) => Promise<{ completed: boolean; }>
```

| Param | Type |
| ------------- | ----------------------------- |
| **`options`** | { url: string; } |

**Returns:** Promise<{ completed: boolean; }>

--------------------