(key?: string, buffer?: AudioBuffer)
| 999 | static audioBufferCache(key: string): AudioBuffer | undefined; |
| 1000 | static audioBufferCache(key: string, buffer: AudioBuffer): void; |
| 1001 | static audioBufferCache(key?: string, buffer?: AudioBuffer): AudioBuffer | undefined | void { |
| 1002 | return _audioBufferCache(this.asEngine(), key as string, buffer as AudioBuffer); |
| 1003 | } |
| 1004 | |
| 1005 | /** |
| 1006 | * Remove an AudioBuffer from the cache |
no test coverage detected