12 lines
376 B
TypeScript
12 lines
376 B
TypeScript
type Param = {
|
|
command: string;
|
|
preflight?: string[] | string;
|
|
postflight?: string[] | string;
|
|
redeploy_file: string;
|
|
port?: string | number | (string | number)[];
|
|
first_run?: boolean;
|
|
debounce?: number;
|
|
};
|
|
export default function startProcess({ command, preflight, postflight, redeploy_file, port, first_run, debounce, }: Param): void;
|
|
export {};
|