UNPKG
suf-node
Version:
latest (1.3.3)
1.3.3
1.3.2
1.3.1
1.3.0
1.2.2
1.2.1
1.2.0
1.1.1
1.1.0
1.0.0
node utility functions.
github.com/TheRealSyler/suf-node
TheRealSyler/suf-node
suf-node
/
lib
/
execUtils.d.ts
9 lines
(8 loc)
•
224 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
export
interface
ExecOptions
{
linkStdout
?:
boolean
; }
export
interface
ExecOut
{
stdout
:
string
;
stderr
:
string
; }
export
declare
function
Exec
(
command
:
string
,
options
?:
ExecOptions
):
Promise
<
ExecOut
>;