UNPKG

projex

Version:
12 lines (11 loc) 502 B
/** * The `bashRunCommand` function runs a specified bash command in all folders of the current directory * or in the selected folders, depending on the options provided. * @param command - The bash command to run. * @param options - An object that contains two properties: * - `l` or `list`: If true, lists all projects to select for running the command. */ export declare const bashRunCommand: (command: string | undefined, options: { l?: boolean; list: boolean; }) => Promise<void>;