buncid/dist/utils/start.d.ts
Benjamin Toby 7bcddc9517 Updates
2025-02-22 14:55:26 +01:00

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 {};