brows3r — TypeScript API
    Preparing search index...

    Interface SearchPage

    One page of search results emitted as a search:page event.

    Mirrors src-tauri/src/search/mod.rs SearchPage.

    The frontend accumulates pages until isFinal = true.

    interface SearchPage {
        isFinal: boolean;
        pageIndex: number;
        requestId: string;
        results: EntryRef[];
    }
    Index

    Properties

    isFinal: boolean

    true on the last page (end of listing or cancelled).

    pageIndex: number

    Zero-based page counter.

    requestId: string

    Echoed from the originating searchPrefix call.

    results: EntryRef[]

    Matching entries for this page.