2025-02-22 13:55:26 +00:00
|
|
|
type Param = {
|
2025-01-16 05:22:33 +00:00
|
|
|
command: string;
|
2025-02-03 12:41:13 +00:00
|
|
|
preflight?: string[] | string;
|
2025-01-16 05:22:33 +00:00
|
|
|
postflight?: string[] | string;
|
|
|
|
redeploy_file: string;
|
|
|
|
port?: string | number | (string | number)[];
|
|
|
|
first_run?: boolean;
|
2025-02-03 13:21:32 +00:00
|
|
|
debounce?: number;
|
2025-02-22 13:55:26 +00:00
|
|
|
};
|
|
|
|
export default function startProcess({ command, preflight, postflight, redeploy_file, port, first_run, debounce, }: Param): void;
|
|
|
|
export {};
|