[WIP] Pings, Pongs & Streams
Some checks failed
CI / checks (push) Failing after 1m38s

This commit is contained in:
Alex Emmet 2026-07-14 00:14:53 +02:00
commit c148314742
17 changed files with 541 additions and 70 deletions

View file

@ -9,6 +9,13 @@ pub struct ConnectionConfig {
pub(crate) description: Option<String>,
}
/// Newer API name for the browser connection configuration.
///
/// `ConnectionConfig` remains the concrete wasm-bindgen class for backwards
/// compatibility with the existing raw JavaScript bindings. The alias keeps
/// Rust consumers aligned with the native/WASM naming used by the public API.
pub type WasmClientConfig = ConnectionConfig;
#[wasm_bindgen]
impl ConnectionConfig {
#[wasm_bindgen(constructor)]