Yet another Fluxer bot built with TypeScript and Bun
at feat/sqlite 6 lines 252 B view raw
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}