source dump of claude code
at main 13 lines 244 B view raw
1import type { CommandSpec } from '../registry.js' 2 3const time: CommandSpec = { 4 name: 'time', 5 description: 'Time a command', 6 args: { 7 name: 'command', 8 description: 'Command to time', 9 isCommand: true, 10 }, 11} 12 13export default time