Source code for polywrap_wasm.linker.invoke

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

from .types import BaseWrapLinker


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