claude/utils/bash/specs/time.ts
kuberwastaken ec53fcbe95 init
2026-03-31 16:25:52 +05:30

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