feat(types): `PingOptions` for Java
This commit is contained in:
parent
da92b62ccd
commit
d4176df6c7
|
@ -1,4 +1,13 @@
|
||||||
import { PingOptions } from "./bedrock";
|
/**
|
||||||
|
* @param port The server port.
|
||||||
|
* @param timeout The read/write socket timeout.
|
||||||
|
* @param protocolVersion The protocol version.
|
||||||
|
*/
|
||||||
|
export type PingOptions = {
|
||||||
|
port: number,
|
||||||
|
timeout: number,
|
||||||
|
protocolVersion: number;
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* JSON format chat component used for description field.
|
* JSON format chat component used for description field.
|
||||||
|
|
Loading…
Reference in New Issue