//! `wasmtime::component::bindgen!`-generated bindings for both worlds.
//!
//! The two worlds share the `host-api` import and the `types` interface.
//! Bindgen still emits separate Rust modules per world, so we call the macro
//! twice. The conversions in [`super::convert`] cover both module hierarchies.
// Convenience aliases — the imported interfaces are byte-identical between
// the two worlds, so we point at the transformer world's modules. Host-api
// and stage are imports; types is a shared interface.
pub use host_api;
pub use stage;
pub use types;