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