@resistdesign/voltra
    Preparing search index...

    Type Alias DocTokenKey

    Key used to address a token within a document and field.

    type DocTokenKey = {
        docId: DocId;
        indexField: string;
        token: string;
    }
    Index

    Properties

    docId: DocId

    Document id containing the token.

    indexField: string

    Field name the token was indexed under.

    token: string

    Token value.