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 @@
/** import { ServerResponse } from "../ServerResponse";
* The data that the server needs in order to perform the `server.info` request.
*/
export interface IServerInfoRequest {}
/** The data sent as a response to `server.info`. */ /** 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. */ /** The version that the server is currently running. */
version: string; version?: string;
} }

View file

@ -21,8 +21,8 @@ Asks the server for information about it.
| ------- | -------- | ----------- | ------- | -------- | -----------
| Yes | Yes | No | Yes | Yes | No
### Payloads: ### Payload Types:
Request Payload: `IServerInfoRequest` Request Payload: N/A
Response Payload: `IServerInfoResponse` Response Payload: `IServerInfoResponse`