Interface TextDocumentContentResult

Result of the workspace/textDocumentContent request.

3.18.0

interface TextDocumentContentResult {
    text: string;
}

Properties

Properties

text: string

The text content of the text document. Please note, that the content of any subsequent open notifications for the text document might differ from the returned content due to whitespace and line ending normalizations done on the client