@resistdesign/voltra
    Preparing search index...

    Type Alias SearchResult

    Search results with normalized tokens and an optional cursor.

    type SearchResult = {
        docIds: DocId[];
        nextCursor?: string;
        normalized: string;
        tokens: string[];
    }
    Index

    Properties

    docIds: DocId[]

    Matching document ids.

    nextCursor?: string

    Cursor string for the next page, if more results exist.

    normalized: string

    Normalized query string.

    tokens: string[]

    Tokens derived from the normalized query.