@agorapulse/capacitor-mediastore
v0.2.0
Published
Manage Android media files
Maintainers
Readme
@agorapulse/capacitor-mediastore
Manage Android media files
Install
# Capacitor 5
npm install @agorapulse/capacitor-mediastore@latest
# Capacitor 4
npm install @agorapulse/[email protected]
# Capacitor 3
npm install @agorapulse/[email protected]
# Then
npx cap syncAPI
savePicture(...)
savePicture(options: SavePictureOptions) => Promise<SavePictureResult>| Param | Type |
| ------------- | ----------------------------------------------------------------- |
| options | SavePictureOptions |
Returns: Promise<SavePictureResult>
saveToDownloads(...)
saveToDownloads(options: SaveToDownloadsOptions) => Promise<SaveToDownloadsResult>| Param | Type |
| ------------- | ------------------------------------------------------------------------- |
| options | SaveToDownloadsOptions |
Returns: Promise<SaveToDownloadsResult>
saveVideo(...)
saveVideo(options: SaveVideoOptions) => Promise<SaveVideoResult>| Param | Type |
| ------------- | ------------------------------------------------------------- |
| options | SaveVideoOptions |
Returns: Promise<SaveVideoResult>
Interfaces
SavePictureResult
| Prop | Type |
| --------- | ------------------- |
| uri | string |
SavePictureOptions
| Prop | Type |
| -------------- | ------------------- |
| album | string |
| filename | string |
| path | string |
SaveToDownloadsResult
| Prop | Type |
| --------- | ------------------- |
| uri | string |
SaveToDownloadsOptions
| Prop | Type |
| -------------- | ------------------- |
| filename | string |
| path | string |
SaveVideoResult
| Prop | Type |
| --------- | ------------------- |
| uri | string |
SaveVideoOptions
| Prop | Type |
| -------------- | ------------------- |
| album | string |
| filename | string |
| path | string |
