wrangler-action/dist/exec.d.ts
Maximo Guk a099e40c73
test
2024-11-05 14:47:01 -06:00

7 lines
374 B
TypeScript

/// <reference types="node" />
import { exec as _childProcessExec } from "node:child_process";
export { exec } from "@actions/exec";
declare const childProcessExec: typeof _childProcessExec.__promisify__;
export declare function execShell(command: string, { silent, ...options }?: Parameters<typeof childProcessExec>[1] & {
silent?: boolean;
}): Promise<number | null>;