Interface Signal<T>

Base signal interface with read-only access to the signal value. It is subscribable and must emit the current value directly on subscription.

interface Signal<T = unknown> {
    get(): T;
}

Type Parameters

  • T = unknown

Hierarchy (View Summary)

Methods

Methods