mirror of
https://github.com/anthropics/claude-code.git
synced 2026-09-14 19:48:39 +08:00
11 lines
222 B
TypeScript
11 lines
222 B
TypeScript
import type { CommandRunInput } from 'claude-code'
|
|
|
|
/**
|
|
* The command as the person types it, with no arguments.
|
|
*/
|
|
export const DIFF: CommandRunInput = {
|
|
command: 'diff',
|
|
args: '',
|
|
origin: { kind: 'composer' },
|
|
}
|