mirror of
https://github.com/artiemis/artemis.js.git
synced 2026-02-14 10:21:54 +00:00
6 lines
165 B
TypeScript
6 lines
165 B
TypeScript
import type { Command, CommandBuilder } from "../types/command";
|
|
|
|
export function defineCommand<B extends CommandBuilder>(command: Command<B>) {
|
|
return command;
|
|
}
|