Agent Client Protocol - v0.18.2
    Preparing search index...

    Type Alias NesEditSuggestion

    A text edit suggestion.

    type NesEditSuggestion = {
        cursorPosition?: Position | null;
        edits: NesTextEdit[];
        id: string;
        uri: string;
    }
    Index

    Properties

    cursorPosition?: Position | null

    Optional suggested cursor position after applying edits.

    edits: NesTextEdit[]

    The text edits to apply.

    id: string

    Unique identifier for accept/reject tracking.

    uri: string

    The URI of the file to edit.