djsbotbase-test
Version:
Discord.js tabanlı komut ve etkinlik sistemlerine sahip bir bot temeli
9 lines (8 loc) • 317 B
TypeScript
export interface CooldownMapItem {
readonly commandType: CommandTypes;
readonly commandName: string;
readonly endsAt: number;
readonly messageShown: boolean;
}
export type EditCooldownMapItem = Partial<Pick<CooldownMapItem, "endsAt" | "messageShown">>;
export type CommandTypes = "slash" | "message";