Skip to content

Latest commit

 

History

History
70 lines (38 loc) · 1.73 KB

callresult.md

File metadata and controls

70 lines (38 loc) · 1.73 KB

wasm-imagemagick > CallResult

Interface: CallResult

The result of calling call. Also the base class of results of calling execute.

Hierarchy

CallResult

ExecuteResultOne

Index

Properties


Properties

exitCode

● exitCode: number

Defined in magickApi.ts:51

Exit code of the command executed. If 0 the command executed successfully, otherwise an error occurred and stderr could have some information about what was wrong


outputFiles

● outputFiles: MagickOutputFile[]

Defined in magickApi.ts:39

Output files generated by the command, if any


stderr

● stderr: string[]

Defined in magickApi.ts:47

Output printed by the command to stderr. If exitCode != 0 then this property could have some information about the error.


stdout

● stdout: string[]

Defined in magickApi.ts:43

Output printed by the command to stdout. For example the command identify rose: will print useful information to stdout