compute - v3.0.0-beta.0
    Preparing search index...

    Interface ReadonlySignal<T>

    A read-only signal: call it with no arguments to read the current value. Computed signals created with computed have this shape — they cannot be written to.

    interface ReadonlySignal<T> {
        subscribe(observer: Observer<T>): Subscription;
        (): T;
    }

    Type Parameters

    • T

    Hierarchy (View Summary)

    Index