Interface Signal<T>

interface Signal<T> {
    "[$ref]": true;
    value: T;
    watch(fn: TFunction<T>): void;
}

Type Parameters

  • T

Properties

Methods

Properties

"[$ref]": true
value: T

Methods

  • Parameters

    • fn: TFunction<T>

    Returns void