wrangler-action/dist/exec.d.ts
Maximo Guk 1eddb4871d
test
2024-11-01 13:11:11 -05: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>;