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