interface WritableComputedRef<T> {
    [RefSymbol]: true;
    effect: ReactiveEffect<T>;
    value: T;
}

Type Parameters

  • T

Hierarchy-Diagram

UML class diagram of WritableComputedRef
Legend
icon for an interface in the UML class diagram interface
icon for a public property in the UML class diagram public property

Hierarchy (view full)

Properties

[RefSymbol]: true

Type differentiator only. We need this to be in public d.ts but don't want it to show up in IDE autocomplete, so we use a private Symbol instead.

effect: ReactiveEffect<T>
value: T