eas-cli
Version:
EAS command line tool
9 lines (8 loc) • 355 B
TypeScript
export declare function runCommandAsync({ cwd, args, command, shouldShowStderrLine, shouldPrintStderrLineAsStdout, showSpinner, }: {
cwd?: string;
args: string[];
command: string;
shouldShowStderrLine?: (line: string) => boolean;
shouldPrintStderrLineAsStdout?: (line: string) => boolean;
showSpinner?: boolean;
}): Promise<void>;