fix(types): type names
This commit is contained in:
parent
d4176df6c7
commit
8bebab258b
|
@ -2,7 +2,7 @@
|
|||
* @param port The server port.
|
||||
* @param timeout The read/write socket timeout.
|
||||
*/
|
||||
export type PingOptions = {
|
||||
export type BedrockPingOptions = {
|
||||
port: number,
|
||||
timeout: number;
|
||||
};
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
* @param timeout The read/write socket timeout.
|
||||
* @param protocolVersion The protocol version.
|
||||
*/
|
||||
export type PingOptions = {
|
||||
export type JavaPingOptions = {
|
||||
port: number,
|
||||
timeout: number,
|
||||
protocolVersion: number;
|
||||
|
|
Loading…
Reference in New Issue