time.ts
1 import type { CommandSpec } from '../registry.js'
2
3 const 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
13 export default time