capacitor-stash-media
v3.2.3
Published
Some helper functions for the user to stash (copy, save, etc) media from the app
Readme
capacitor-stash-media
Some helper functions for the user to stash (copy, save, etc) media from the app
Install
npm install capacitor-stash-media
npx cap syncAPI
savePhoto(...)
savePhoto(options: { url: string; }) => Promise<void>| Param | Type |
| ------------- | ----------------------------- |
| options | { url: string; } |
copyPhotoToClipboard(...)
copyPhotoToClipboard(options: { url: string; }) => Promise<void>| Param | Type |
| ------------- | ----------------------------- |
| options | { url: string; } |
shareImage(...)
shareImage(options: { url: string; title: string; }) => Promise<void>| Param | Type |
| ------------- | -------------------------------------------- |
| options | { url: string; title: string; } |
saveVideo(...)
saveVideo(options: { url: string; }) => Promise<void>| Param | Type |
| ------------- | ----------------------------- |
| options | { url: string; } |
