use *;
/// Rust-side registry of bridge signal addresses per element.
///
/// Replaces the per-element `data-euv-signal-addrs` DOM attribute round-trip:
/// the mount path pushes directly into a global `HashMap<euv_id, Vec<usize>>`,
/// and the cleanup path reads it back to drive `Signal::clear_listeners`.
/// No JS-boundary crossings are required for signal address bookkeeping.
pub ;
/// A `Sync` wrapper for single-threaded global `HashMap` access.
///
/// SAFETY: This type is only safe to use in single-threaded contexts
/// (e.g., WASM). It implements `Sync` to allow usage as a `static mut`
/// variable, but concurrent access from multiple threads would be
/// undefined behavior.
pub )]
pub ,
);