update descriptions

This commit is contained in:
Arthur Ozga 2017-12-06 13:14:45 -08:00
parent 2e3a8793b3
commit 0e75c5cc2f
2 changed files with 2 additions and 8 deletions

View file

@ -217,16 +217,13 @@ namespace ts.server.protocol {
projectFileName?: string;
}
/**
* Requests status information from the server
*/
export interface StatusRequest extends Request {
command: CommandTypes.Status;
}
export interface StatusResponseBody {
/**
* the version of the currently-running server.
* The TypeScript version (`ts.version`).
*/
version: string;
}

View file

@ -5006,15 +5006,12 @@ declare namespace ts.server.protocol {
file: string;
projectFileName?: string;
}
/**
* Requests status information from the server
*/
interface StatusRequest extends Request {
command: CommandTypes.Status;
}
interface StatusResponseBody {
/**
* the version of the currently-running server.
* The TypeScript version (`ts.version`).
*/
version: string;
}