https://github.com/marcusbuffett/capacitor-plugin-chessbook
https://github.com/marcusbuffett/capacitor-plugin-chessbook
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/marcusbuffett/capacitor-plugin-chessbook
- Owner: marcusbuffett
- Created: 2024-02-23T16:30:16.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-21T17:51:53.000Z (about 2 years ago)
- Last Synced: 2024-05-01T13:08:15.508Z (about 2 years 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; }>
--------------------