/
aqa
/
claude-code
Обзор
Документация
Войти
/
aqa
/
claude-code
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
utils/bash/specs/timeout.ts
20 строк
426 B
kuberwastaken
new initial commit (history rewritten)
01 апр 2026, 14:57
01 апр 2026, 14:57
c1996f2
Код
Авторство
О чём код?
import type { CommandSpec } from '../registry.js' const timeout: CommandSpec = { name: 'timeout', description: 'Run a command with a time limit', args: [ { name: 'duration', description: 'Duration to wait before timing out (e.g., 10, 5s, 2m)', isOptional: false, }, { name: 'command', description: 'Command to run', isCommand: true, }, ], } export default timeout