Interface Readable<T>

Readable interface for subscribing.

interface Readable<T> {
    subscribe(
        this: void,
        run: Subscriber<T>,
        invalidate?: Invalidator<T>,
    ): Unsubscriber;
}

Type Parameters

  • T
Hierarchy

Methods

Methods