import { COMMAND_META_KEY } from "@/decorators/command"; import type { CommandCtor } from "@/types"; export function isCommandCtor(val: unknown): val is CommandCtor { return typeof val === "function" && Reflect.hasMetadata(COMMAND_META_KEY, val); }