Documentation
    Preparing search index...

    A Signal is a Transient associated to a value.

    This value will change over time, and we'll be able to observe these changes.

    interface ComputedSignalTrait<GValue> {
        capture(): void;
        get(): GValue;
        takeSnapshot(): TransientSnapshotChanged;
        trackActivity(onActivity: TransientActivity): UndoFunction;
    }

    Type Parameters

    • GValue

    Hierarchy (View Summary)

    Implemented by

    Index

    Methods