Files
2026-05-06 18:55:16 -05:00

9 lines
251 B
TypeScript

import type { IoHelper } from '../../api-private';
/**
* OS helpers
*
* Shell function which both prints to stdout and collects the output into a
* string.
*/
export declare function shell(ioHelper: IoHelper, command: string[]): Promise<string>;