9 lines
242 B
Rust
9 lines
242 B
Rust
//! This crate contains helper abstractions for dealing with JavaScript values and functions from
|
|
//! Rust.
|
|
mod convert;
|
|
mod js_function;
|
|
|
|
#[cfg_attr(target_family = "wasm", allow(unused_imports))]
|
|
pub use convert::*;
|
|
pub use js_function::*;
|