Out-of-Band (OOB) updates allow you to update multiple DOM elements from a single WebSocket response, enabling rich, multi-area updates that keep your UI in sync across different sections of your application.
interface WSXOOBUpdate { target: string; // CSS selector for target element html: string; // HTML content to swap swap?: string; // How to swap content (default: innerHTML)}