/// import { AudioCache } from './AudioCache.js'; declare function getAudioCacheInstance(): AudioCache; /** * Global Web Audio Context manager * Manages a single AudioContext instance for efficient audio playback * * ## iOS Safari Audio Workaround * * iOS Safari has a known issue where Web Audio API playback may not produce * sound on real devices (works fine in simulator). The workaround routes audio * through a MediaStreamDestination connected to an HTML5 Audio element: * * ``` * AudioBufferSourceNode → GainNode → MediaStreamDestination → HTML5