UNPKG
electron-notarize
Version:
latest (1.2.2)
1.2.2
1.2.1
1.1.1
1.1.0
1.0.1
1.0.0
0.3.0
0.2.1
0.2.0
0.1.1
0.1.0
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
0.0.0
Notarize your Electron app
github.com/electron/notarize
electron/notarize
electron-notarize
/
lib
/
spawn.d.ts
8 lines
(7 loc)
•
260 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
/// <reference types="node" />
import
{
SpawnOptions
}
from
'child_process'
;
export
interface
SpawnResult
{
code
:
number
|
null
;
output
:
string
; }
export
declare
const
spawn
:
(
cmd
:
string
,
args
?:
string
[],
opts
?:
SpawnOptions
) =>
Promise
<
SpawnResult
>;