Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marcusbuffett/capacitor-plugin-chessbook
https://github.com/marcusbuffett/capacitor-plugin-chessbook
Last synced: 25 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/marcusbuffett/capacitor-plugin-chessbook
- Owner: marcusbuffett
- Created: 2024-02-23T16:30:16.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-03-21T17:51:53.000Z (10 months ago)
- Last Synced: 2024-05-01T13:08:15.508Z (8 months ago)
- Language: JavaScript
- Size: 123 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
README
# capacitor-is-audio-playing
checks if audio is playing
## Install
```bash
npm install capacitor-is-audio-playing
npx cap sync
```## API
* [`echo(...)`](#echo)
* [`isPlayingAudio()`](#isplayingaudio)### echo(...)
```typescript
echo(options: { value: string; }) => Promise<{ value: string; }>
```| Param | Type |
| ------------- | ------------------------------- |
| **`options`** |{ value: string; }
|**Returns:**
Promise<{ value: string; }>
--------------------
### isPlayingAudio()
```typescript
isPlayingAudio() => Promise<{ playing: boolean; }>
```**Returns:**
Promise<{ playing: boolean; }>
--------------------