Source code for polywrap_wasm.linker.subinvoke

"""This module contains the linker for the subinvoke family of Wasm imports."""
from wasmtime import FuncType, ValType

from .types import BaseWrapLinker


[docs]class WrapSubinvokeLinker(BaseWrapLinker): """Linker for the subinvoke family of Wasm imports."""