feat(api) Re-export WithEnv and WithoutEnv.

It is required for `deprecated/runtime-core/`.
This commit is contained in:
Ivan Enderlin
2020-06-25 11:15:43 +02:00
parent b78b490e85
commit 9b721fab1b
3 changed files with 6 additions and 4 deletions

View File

@@ -3,7 +3,9 @@ mod global;
mod memory;
mod table;
pub use self::function::{Function, HostFunction, WasmExternType, WasmTypeList};
pub use self::function::{
Function, HostFunction, WasmExternType, WasmTypeList, WithEnv, WithoutEnv,
};
pub use self::global::Global;
pub use self::memory::Memory;
pub use self::table::Table;