buncid/dist/utils/run.d.ts

8 lines
207 B
TypeScript
Raw Normal View History

2025-01-16 05:22:33 +00:00
import { ChildProcess } from "child_process";
/**
* ## Preflight Function
* @param {string} command
* @returns {ChildProcess | null}
*/
export default function run(command: string): ChildProcess | null;