8 lines
207 B
TypeScript
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;
|