Remove the IServerInfoRequest interface since it wasn't in use

This commit is contained in:
Oliver-Akins 2022-01-05 01:24:34 -07:00
parent 10a2d67907
commit 81d9f0a5bf
2 changed files with 5 additions and 8 deletions

View file

@ -1,10 +1,7 @@
/**
* The data that the server needs in order to perform the `server.info` request.
*/
export interface IServerInfoRequest {}
import { ServerResponse } from "../ServerResponse";
/** The data sent as a response to `server.info`. */
export interface IServerInfoResponse {
export interface IServerInfoResponse extends ServerResponse {
/** The version that the server is currently running. */
version: string;
version?: string;
}