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

    Type Alias TextDocumentContentChangeEvent

    A content change event for a document.

    When range is None, text is the full content of the document. When range is Some, text replaces the given range.

    type TextDocumentContentChangeEvent = {
        range?: Range | null;
        text: string;
    }
    Index

    Properties

    Properties

    range?: Range | null

    The range of the document that changed. If None, the entire content is replaced.

    text: string

    The new text for the range, or the full document content if range is None.