Interface DidSaveTextDocumentParams

The parameters sent in a save text document notification

interface DidSaveTextDocumentParams {
    text?: string;
    textDocument: TextDocumentIdentifier;
}

Properties

Properties

text?: string

Optional the content when saved. Depends on the includeText value when the save notification was requested.

The document that was saved.