hyperlark (TypeScript)
    Preparing search index...

    Interface ParseStreamOptions

    Options for the public parseStream(text, onSubtree, opts).

    interface ParseStreamOptions {
        batch_size?: number;
        batchSize?: number;
        on: string | string[];
    }
    Index
    batch_size?: number

    Subtrees buffered per crossing (default 1: each subtree is delivered as soon as it reduces, and a false return stops the parse with minimal run-ahead — raise it to amortize crossings on dense streams).

    batchSize?: number

    Alias of batch_size.

    on: string | string[]

    REQUIRED: the rule display name(s) whose completed subtrees are streamed.