Skip to content
This repository was archived by the owner on Oct 9, 2025. It is now read-only.

Commit f02d49f

Browse files
refactor: fix explicit type declarations (#67)
Explicit types where they can be easily inferred may add unnecessary verbosity for variables or parameters initialized to a number, string, or boolean Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
1 parent 4a6fada commit f02d49f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/Client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export default class SuperClient<R extends boolean = boolean> extends Client<R>
4242
private readonly eventManager = EventManager;
4343

4444
private _connectionCache: Collection<string, connectedList> = new Collection();
45-
private _cachePopulated: boolean = false;
45+
private _cachePopulated = false;
4646
private readonly scheduler = new Scheduler();
4747

4848
readonly description = 'The only cross-server chatting bot you\'ll ever need.';

0 commit comments

Comments
 (0)