slug-code/utils/bash/specs/time.ts
2026-03-31 12:46:52 -04:00

13 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