Remove the IServerInfoRequest interface since it wasn't in use
This commit is contained in:
parent
10a2d67907
commit
81d9f0a5bf
2 changed files with 5 additions and 8 deletions
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
@ -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`
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue