AngularTS
    Preparing search index...

    Interface WasmScopeBindingOptions

    Options for binding an AngularTS scope to Wasm lifecycle callbacks.

    interface WasmScopeBindingOptions {
        initial?: boolean;
        name?: string;
        watch?: string[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    initial?: boolean

    Emit the current value immediately when registering each watched path.

    name?: string

    Stable name exposed to Wasm clients. Defaults to $scopename or $id.

    watch?: string[]

    Scope paths that should emit ng_scope_on_update callbacks.