diff --git a/src/hyperlight_host/src/func/mod.rs b/src/hyperlight_host/src/func/mod.rs index c627b0de2..426897e9f 100644 --- a/src/hyperlight_host/src/func/mod.rs +++ b/src/hyperlight_host/src/func/mod.rs @@ -29,12 +29,18 @@ pub(crate) mod host_functions; /// Re-export for `HostFunction` trait pub use host_functions::{HostFunction, Registerable}; +/// Re-export for `ParameterType` enum +pub use hyperlight_common::flatbuffer_wrappers::function_types::ParameterType; /// Re-export for `ParameterValue` enum pub use hyperlight_common::flatbuffer_wrappers::function_types::ParameterValue; /// Re-export for `ReturnType` enum pub use hyperlight_common::flatbuffer_wrappers::function_types::ReturnType; /// Re-export for `ReturnValue` enum pub use hyperlight_common::flatbuffer_wrappers::function_types::ReturnValue; +/// Re-export for `HostFunctionDefinition` +pub use hyperlight_common::flatbuffer_wrappers::host_function_definition::HostFunctionDefinition; +/// Re-export for `HostFunctionDetails` +pub use hyperlight_common::flatbuffer_wrappers::host_function_details::HostFunctionDetails; pub use hyperlight_common::func::{ ParameterTuple, ResultType, SupportedParameterType, SupportedReturnType, };