UNPKG

code-story

Version:

Get your code activity log for standup from git

7 lines (6 loc) 260 B
/// <reference types="node" /> import { SpawnOptionsWithoutStdio } from 'child_process'; /** * Run command with text output in terminal */ export declare const runCommand: (command: string, options?: SpawnOptionsWithoutStdio | undefined) => Promise<string>;