Interface DidOpenTextDocumentParams

The parameters sent in an open text document notification

interface DidOpenTextDocumentParams {
    textDocument: TextDocumentItem;
}

Properties

Properties

textDocument: TextDocumentItem

The document that was opened.