@mikuroxina/mini-fn
    Preparing search index...

    Type Alias BuildSignal<T>

    BuildSignal: Readonly<
        | { computed: T; nextFreeIndex: number; type: typeof buildDoneNominal }
        | {
            currentFreeIndex: number;
            neededMinimalSize: number;
            nextToRun: BuildStep<T>;
            type: typeof bufferFullNominal;
        }
        | {
            currentFreeIndex: number;
            nextToRun: BuildStep<T>;
            toInsert: DataView;
            type: typeof insertChunkNominal;
        },
    >

    A result of BuildStep to report the status of data building process.

    Type Parameters

    • T