Unify native_type::NativeWasmTypeInto in js/sys

This commit is contained in:
Syrus Akbary
2023-02-10 15:55:09 -08:00
parent 0dda3c1e65
commit a1d3891c1f
12 changed files with 70 additions and 201 deletions

View File

@@ -434,6 +434,7 @@ mod extern_ref;
mod function_env;
mod mem_access;
mod module;
mod native_type;
mod store;
#[cfg(feature = "sys")]
@@ -453,6 +454,8 @@ pub use extern_ref::ExternRef;
pub use function_env::{FunctionEnv, FunctionEnvMut};
pub use mem_access::{MemoryAccessError, WasmRef, WasmSlice, WasmSliceIter};
pub use module::{IoCompileError, Module};
pub use native_type::NativeWasmTypeInto;
pub use store::{AsStoreMut, AsStoreRef, OnCalledHandler, Store, StoreId, StoreMut, StoreRef};
#[cfg(feature = "sys")]
pub use store::{TrapHandlerFn, Tunables};