/// /** * Debug logging wrapper - only logs when DEBUG is enabled * * Used for diagnostic information that helps troubleshoot audio issues. * These logs are verbose and should not appear in production. * * ## Build-Time Configuration * * Enable debug logging by building with: * ```bash * DEBUG_AUDIO=true npm run build * ``` * * ## Debug Symbols * * - 🎧 Unlock event listener setup * - 👆 User interaction detection * - 🎵 AudioContext creation * - 🔓 Unlock process (context resume, scratch buffer playback) * - 🔊 Audio playback state, buffer data, and routing details * - ✅ Success indicators * - ⚠️ Warnings for potential issues * - ❌ Error indicators */ declare const debugLog: CallableFunction | undefined; export { debugLog };