Interface SignalStore<T>

Represents a store that can return its value with a get method.

interface SignalStore<T> {
    get(): T;
}

Type Parameters

  • T

Hierarchy (view full)

Methods

Methods

  • Returns the value of the store.

    Returns T