Type Alias TextDocumentContentChangePartial

TextDocumentContentChangePartial: {
    range: Range;
    rangeLength?: uinteger;
    text: string;
}

Type declaration

  • range: Range

    The range of the document that changed.

  • OptionalrangeLength?: uinteger

    The optional length of the range that got replaced.

    use range instead.

  • text: string

    The new text for the provided range.

3.18.0