AngularTS
    Preparing search index...

    Interface WasmScopeUpdate

    Scope update delivered from AngularTS to a Wasm client callback.

    interface WasmScopeUpdate {
        path: string;
        scopeHandle: number;
        scopeName: string;
        value: unknown;
    }
    Index

    Properties

    path: string

    Watched path that changed.

    scopeHandle: number

    Host-side numeric scope handle.

    scopeName: string

    Stable scope name.

    value: unknown

    Current value read from the scope path.