Skip to content

@ls-stack/node-utils / runShellCmd / <internal>

<internal>

Type Aliases

CmdResult

ts
type CmdResult = object;

Defined in: runShellCmd.ts:3

Properties

error
ts
error: boolean;

Defined in: runShellCmd.ts:6

label
ts
label: string | null;

Defined in: runShellCmd.ts:4

out
ts
out: string;

Defined in: runShellCmd.ts:5

stderr
ts
stderr: string;

Defined in: runShellCmd.ts:8

stdout
ts
stdout: string;

Defined in: runShellCmd.ts:7


RunCmdOptions

ts
type RunCmdOptions = object;

Defined in: runShellCmd.ts:13

Properties

cwd?
ts
optional cwd: string;

Defined in: runShellCmd.ts:16

mock?
ts
optional mock: CmdResult;

Defined in: runShellCmd.ts:14

noCiColorForce?
ts
optional noCiColorForce: boolean;

Defined in: runShellCmd.ts:18

silent?
ts
optional silent: boolean | "timeOnly";

Defined in: runShellCmd.ts:15

throwOnError?
ts
optional throwOnError: boolean;

Defined in: runShellCmd.ts:17