File tree Expand file tree Collapse file tree
tests/baselines/reference/api Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4904,6 +4904,7 @@ declare namespace ts.server.protocol {
49044904 Rename = "rename" ,
49054905 Saveto = "saveto" ,
49064906 SignatureHelp = "signatureHelp" ,
4907+ Status = "status" ,
49074908 TypeDefinition = "typeDefinition" ,
49084909 ProjectInfo = "projectInfo" ,
49094910 ReloadProjects = "reloadProjects" ,
@@ -5005,6 +5006,24 @@ declare namespace ts.server.protocol {
50055006 file : string ;
50065007 projectFileName ?: string ;
50075008 }
5009+ /**
5010+ * Requests status information from the server
5011+ */
5012+ interface StatusRequest extends Request {
5013+ command : CommandTypes . Status ;
5014+ }
5015+ interface StatusResponseBody {
5016+ /**
5017+ * the version of the currently-running server.
5018+ */
5019+ version : string ;
5020+ }
5021+ /**
5022+ * Response to StatusRequest
5023+ */
5024+ interface StatusResponse extends Response {
5025+ body : StatusResponseBody ;
5026+ }
50085027 /**
50095028 * Requests a JS Doc comment template for a given position
50105029 */
You can’t perform that action at this time.
0 commit comments