1use wasm_bindgen::prelude::*; 2 3#[wasm_bindgen] 4extern { 5 pub type OsConstantsLibuv; 6 7 // FIXME: throws an exception 8 #[wasm_bindgen(method, getter)] 9 pub fn UV_UDP_REUSEADDR(this: &OsConstantsLibuv) -> i32; 10}