(callback: (time: number) => void)
| 313 | } |
| 314 | |
| 315 | public getCurrentTime(callback: (time: number) => void): void { |
| 316 | if (this._loaded) { |
| 317 | RNSound.getCurrentTime(this._key, callback); |
| 318 | } |
| 319 | } |
| 320 | |
| 321 | public setCurrentTime(value: number): Sound { |
| 322 | if (this._loaded) { |
no outgoing calls
no test coverage detected