Readable interface for subscribing. See the main SvelteStore article on how to use it in Micrio.

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

Type Parameters

  • T

Hierarchy (view full)

Methods

Methods