/
TON618OFF
/
FinalPWHTML
Обзор
Документация
Войти
/
TON618OFF
/
FinalPWHTML
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
node_modules/concurrently/dist/src/flow-control/flow-controller.d.ts
13 строк
387 B
TON618OFF
не ну это ваще
23 июн 2024, 00:30
23 июн 2024, 00:30
e27ae20
Код
Авторство
О чём код?
import { Command } from '../command'; /** * Interface for a class that controls and/or watches the behavior of commands. * * This may include logging their output, creating interactions between them, or changing when they * actually finish. */ export interface FlowController { handle(commands: Command[]): { commands: Command[]; onFinish?: () => void; }; }