Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marcusbuffett/capacitor-share
https://github.com/marcusbuffett/capacitor-share
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/marcusbuffett/capacitor-share
- Owner: marcusbuffett
- Created: 2024-04-30T15:30:08.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-04-30T16:49:33.000Z (9 months ago)
- Last Synced: 2024-05-02T11:25:54.812Z (9 months ago)
- Language: JavaScript
- Size: 96.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
README
# capacitor-share
share
## Install
```bash
npm install capacitor-share
npx cap sync
```## API
* [`share(...)`](#share)
### share(...)
```typescript
share(options: { text: string; filename?: string; }) => Promise<{ value: string; }>
```| Param | Type |
| ------------- | ------------------------------------------------- |
| **`options`** |{ text: string; filename?: string; }
|**Returns:**
Promise<{ value: string; }>
--------------------