@sourceacademy/autocomplete
    Preparing search index...

    Interface AutoCompleteEntry

    interface AutoCompleteEntry {
        docHTML?: string;
        meta: CompletionItemKind;
        name: string;
        score?: number;
    }
    Index

    Properties

    docHTML?: string

    The documentation string for the autocomplete entry, which can be displayed in the autocomplete tooltip

    The type of the autocomplete entry, e.g., "func", "var", etc.

    name: string

    The name of the autocomplete entry

    score?: number

    The score of the autocomplete entry (higher score would be more relevant)