/
aqa
/
claude-code
Обзор
Документация
Войти
/
aqa
/
claude-code
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
utils/bash/specs/sleep.ts
13 строк
315 B
kuberwastaken
new initial commit (history rewritten)
01 апр 2026, 14:57
01 апр 2026, 14:57
c1996f2
Код
Авторство
О чём код?
import type { CommandSpec } from '../registry.js' const sleep: CommandSpec = { name: 'sleep', description: 'Delay for a specified amount of time', args: { name: 'duration', description: 'Duration to sleep (seconds or with suffix like 5s, 2m, 1h)', isOptional: false, }, } export default sleep