@sourceacademy/autocomplete
    Preparing search index...

    Interface AutoCompleteRequest

    interface AutoCompleteRequest {
        code: string;
        column: number;
        row: number;
        type: "request";
    }
    Index

    Properties

    Properties

    code: string

    The current code in the editor

    column: number

    The current column of the cursor in the editor (1-indexed)

    row: number

    The current row of the cursor in the editor (1-indexed)

    type: "request"