UNPKG
sinotron
Version:
latest (0.1.0-alpha)
0.1.0-alpha
0.0.3-alpha
0.0.1-dev
0.0.1-alpha
Simple framework for Typescript Electron projects
sinotron
/
dist
/
utils
/
process-util.d.ts
5 lines
(4 loc)
•
170 B
TypeScript
View Raw
1
2
3
4
5
import
{
SpawnOptions
}
from
'child_process'
;
export
declare
const
ProcessUtil
: {
spawn
:
(
command
:
string
,
args
?:
string
[],
opts
?:
SpawnOptions
) =>
Promise
<
void
>; };