refactor: explicit return types on all public functions
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.6
parent
8d93abf36d
commit
7de503a487
@@ -25,7 +25,7 @@ const QUEUE_TIMEOUT_MS = Number(process.env.QUEUE_TIMEOUT_MS) || (process.env.NO
|
||||
const fightCooldowns = new Map<string, number>()
|
||||
const COOLDOWN_MS = 15_000
|
||||
|
||||
export function setCooldown(botId: string) {
|
||||
export function setCooldown(botId: string): void {
|
||||
fightCooldowns.set(botId, Date.now() + COOLDOWN_MS)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user