djsbotbase-test
Version:
Discord.js tabanlı komut ve etkinlik sistemlerine sahip bir bot temeli
8 lines (7 loc) • 674 B
TypeScript
import { SlashCommand } from "../commands/slashCommandClass";
import { Command } from "../commands/commandClass";
import type { CooldownMapItem, EditCooldownMapItem } from "./helperTypes";
export declare function checkCooldown(userId: string, command: Command | SlashCommand): [CooldownMapItem | undefined, boolean];
export declare function addCooldown(userId: string, command: SlashCommand | Command, cooldownOverride?: number): void;
export declare function editCooldown(userId: string, command: Command | SlashCommand, options: EditCooldownMapItem): void;
export declare function getCooldown(userId: string, command: Command | SlashCommand): CooldownMapItem | undefined;