UNPKG

323 BTypeScriptView Raw
1import { Foreman, ProcessIdentifier } from "@typeskrift/foreman";
2import { ExecaSyncReturnValue } from "execa";
3declare class ProcessManager extends Foreman {
4 restart(id: ProcessIdentifier): ExecaSyncReturnValue;
5 list(): Array<Record<string, any>>;
6}
7export declare const processManager: ProcessManager;
8export {};