@nortex/handler
Version:
The easy to use, all-in-one command and event handler.
8 lines (7 loc) • 342 B
TypeScript
import { ExecutionError } from "../errors/ExecutionError";
import { CommandInteraction } from "discord.js";
import { Command } from "../structures/Command";
export default class Verificators {
static verifyCommand(interaction: CommandInteraction, cmd: Command): Promise<ExecutionError | undefined>;
static isClass(v: any): boolean;
}