mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-22 01:53:24 +01:00
7 lines
374 B
TypeScript
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>;
|