fix(types): type names

This commit is contained in:
inotflying 2023-12-08 15:41:24 +04:00
parent d4176df6c7
commit 8bebab258b
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
* @param port The server port. * @param port The server port.
* @param timeout The read/write socket timeout. * @param timeout The read/write socket timeout.
*/ */
export type PingOptions = { export type BedrockPingOptions = {
port: number, port: number,
timeout: number; timeout: number;
}; };

2
types/lib/java.d.ts vendored
View File

@ -3,7 +3,7 @@
* @param timeout The read/write socket timeout. * @param timeout The read/write socket timeout.
* @param protocolVersion The protocol version. * @param protocolVersion The protocol version.
*/ */
export type PingOptions = { export type JavaPingOptions = {
port: number, port: number,
timeout: number, timeout: number,
protocolVersion: number; protocolVersion: number;