Interface Ref<T>

Ref is a type of object that can be watched for changes. It has a .value property, which holds the current value. It also has a .watch method, which adds an observer to its value.

interface Ref<T> {
    __isRef: true;
    value: T;
    check(): void;
    toString(): string;
    valueOf(): T;
    watch(effect: AnyFunction): void;
}

Type Parameters

  • T

Implemented by

Properties

__isRef: true
value: T

Methods

  • Returns string

  • Parameters

    • effect: AnyFunction

    Returns void