Skip to content

Commit 2e3a879

Browse files
committed
Update baseline
1 parent a714ece commit 2e3a879

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

tests/baselines/reference/api/tsserverlibrary.d.ts

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff 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
*/

0 commit comments

Comments
 (0)