Files
claude-code/utils/bash/specs/time.ts
T
2026-04-01 17:32:37 +02:00

14 lines
244 B
TypeScript

import type { CommandSpec } from '../registry.js'
const time: CommandSpec = {
name: 'time',
description: 'Time a command',
args: {
name: 'command',
description: 'Command to time',
isCommand: true,
},
}
export default time