Files
opencode/packages/tui/src/util/command.ts
T
2026-08-19 18:04:18 -04:00

4 lines
157 B
TypeScript

export function commandText(command: { name: string; arguments: string }) {
return `/${command.name}${command.arguments ? ` ${command.arguments}` : ""}`
}