summaryrefslogtreecommitdiff
path: root/node_modules/electron-notarize/lib/spawn.d.ts
blob: df894c14252235100d42656cdb733f8e7e6e9e89 (about) (plain)
1
2
3
4
5
6
7
/// <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>;