nodecid/dist/utils/run.d.ts
2025-01-16 06:22:33 +01:00

8 lines
207 B
TypeScript

import { ChildProcess } from "child_process";
/**
* ## Preflight Function
* @param {string} command
* @returns {ChildProcess | null}
*/
export default function run(command: string): ChildProcess | null;