circu.js
    Preparing search index...

    Interface Instance

    Instance object - represents a WebAssembly instance Created via buildInstance(), not a constructor

    interface Instance {
        _opaque: typeof _opaque;
        callFunction(name: string, ...args: WasmValue[]): WasmValue | WasmValue[];
    }
    Index

    Properties

    Methods

    Properties

    _opaque: typeof _opaque

    Opaque handle - do not access directly

    Methods

    • Call an exported function by name

      Parameters

      • name: string

        The exported function name

      • ...args: WasmValue[]

        Arguments to pass to the function

      Returns WasmValue | WasmValue[]

      The function result (or array of results for multi-return)