ExecResult
A result of exec.
Import:
import type { ExecResult } from 'obsidian-dev-utils/script-utils/exec';Signature:
export interface ExecResultProperties
| Property | Type | Description |
|---|---|---|
| exitCode | null | number | An exit code of the command. A value of null indicates that the process did not exit normally. |
| exitSignal | NodeJS.Signals | null | A signal that caused the process to be terminated. A value of null indicates that no signal was received. |
| stderr | string | A standard error output from the command. |
| stdout | string | A standard output from the command. |
Links to this page: