File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed
tests/baselines/reference/api Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -4904,6 +4904,7 @@ declare namespace ts.server.protocol {
4904
4904
Rename = "rename" ,
4905
4905
Saveto = "saveto" ,
4906
4906
SignatureHelp = "signatureHelp" ,
4907
+ Status = "status" ,
4907
4908
TypeDefinition = "typeDefinition" ,
4908
4909
ProjectInfo = "projectInfo" ,
4909
4910
ReloadProjects = "reloadProjects" ,
@@ -5005,6 +5006,24 @@ declare namespace ts.server.protocol {
5005
5006
file : string ;
5006
5007
projectFileName ?: string ;
5007
5008
}
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
+ }
5008
5027
/**
5009
5028
* Requests a JS Doc comment template for a given position
5010
5029
*/
You can’t perform that action at this time.
0 commit comments