UNPKG
code-story
Version:
latest (0.4.1)
0.4.1
0.4.0
0.3.0
0.2.3
0.2.2
0.2.0
0.1.0
0.0.1
Get your code activity log for standup from git
github.com/MoonW1nd/codestory
MoonW1nd/codestory
code-story
/
lib
/
helpers
/
runCommand.d.ts
7 lines
(6 loc)
•
260 B
TypeScript
View Raw
1
2
3
4
5
6
7
/// <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
>;