Sporades SDK API
    Preparing search index...

    Type Alias SvelteReadable<State>

    Minimal Svelte-compatible readable store contract.

    type SvelteReadable<State> = {
        subscribe(listener: (state: State) => void): () => void;
    }

    Type Parameters

    • State
    Index
    • Parameters

      • listener: (state: State) => void

      Returns () => void