UNPKG

snyk-nuget-plugin

Version:
13 lines (12 loc) 294 B
interface ProcessOptions { cwd?: string; env?: { [name: string]: string; }; } export interface ExecResult { stdout: string; stderr: string; } export declare function execute(command: string, args: string[], options?: ProcessOptions): Promise<ExecResult>; export {};