From fc3d7f5c8e8a959d8aa582d2989be0d01764372f Mon Sep 17 00:00:00 2001 From: c43721 Date: Sat, 2 Nov 2024 13:16:10 -0500 Subject: [PATCH] fix: fix slow types --- src/rcon.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rcon.ts b/src/rcon.ts index 28f4433..eb4c10f 100644 --- a/src/rcon.ts +++ b/src/rcon.ts @@ -53,14 +53,14 @@ export class Rcon { /** * Gets whether the socket is connected */ - get isConnected() { + get isConnected(): boolean { return this.#connected; } /** * Gets whether the connection is authenticated */ - get isAuthenticated() { + get isAuthenticated(): boolean { return this.#authenticated; }