Skip to content

Commit

Permalink
fix: fix slow types
Browse files Browse the repository at this point in the history
  • Loading branch information
c43721 committed Nov 2, 2024
1 parent dd67f74 commit fc3d7f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rcon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit fc3d7f5

Please sign in to comment.