2025-02-09 19:09:01 +01:00

6 lines
165 B
TypeScript

import type { Command, CommandBuilder } from "../types/command";
export function defineCommand<B extends CommandBuilder>(command: Command<B>) {
return command;
}