wrangler-action/dist/exec.d.ts

8 lines
374 B
TypeScript
Raw Normal View History

2024-11-01 19:11:11 +01:00
/// <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>;