Automerge Repo - v2.6.0-alpha.1
    Preparing search index...

    Type Alias ProgressSignal<T>

    Use DocumentProgress. Will be removed in the next major release.

    type ProgressSignal<T> = {
        peek: () => FindProgress<T>;
        subscribe: (callback: (progress: FindProgress<T>) => void) => () => void;
        untilReady: (allowableStates: string[]) => Promise<DocHandle<T>>;
    }

    Type Parameters

    • T
    Index

    Properties

    peek: () => FindProgress<T>
    subscribe: (callback: (progress: FindProgress<T>) => void) => () => void
    untilReady: (allowableStates: string[]) => Promise<DocHandle<T>>