UNPKG
@electron/notarize
Version:
latest (3.1.1)
3.1.1
3.1.0
3.0.2
3.0.1
3.0.0
2.5.0
2.4.0
2.3.2
2.3.1
2.3.0
2.2.1
2.2.0
2.1.0
2.0.0
1.2.4
1.2.3
0.0.0
Notarize your Electron app
github.com/electron/notarize
electron/notarize
@electron/notarize
/
lib
/
spawn.d.ts
8 lines
(7 loc)
•
290 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
/// <reference types="node" resolution-mode="require"/>
import
{
SpawnOptions
}
from
'node:child_process'
;
export
interface
SpawnResult
{
code
:
number
|
null
;
output
:
string
; }
export
declare
const
spawn
:
(
cmd
:
string
,
args
?:
string
[],
opts
?:
SpawnOptions
) =>
Promise
<
SpawnResult
>;