Home Explore Blog CI



docker

content/reference/api/extensions-sdk/RawExecResult.md
8ecc211b682f913d92e3f31cc607c79f43dde9b496de88e700000003000002f1
---
title: "Interface: RawExecResult"
description: Docker extension API reference
keywords: Docker, extensions, sdk, API, reference
aliases:
 - /desktop/extensions-sdk/dev/api/reference/interfaces/RawExecResult/
 - /extensions/extensions-sdk/dev/api/reference/interfaces/RawExecResult/
---

**`Since`**

0.2.0

## Hierarchy

- **`RawExecResult`**

  ↳ [`ExecResult`](ExecResult.md)

## Properties

### cmd

• `Optional` `Readonly` **cmd**: `string`

___

### killed

• `Optional` `Readonly` **killed**: `boolean`

___

### signal

• `Optional` `Readonly` **signal**: `string`

___

### code

• `Optional` `Readonly` **code**: `number`

___

### stdout

• `Readonly` **stdout**: `string`

___

### stderr

• `Readonly` **stderr**: `string`

Chunks
5cfa2688 (1st chunk of `content/reference/api/extensions-sdk/RawExecResult.md`)
Title: Interface: RawExecResult - Properties
Summary
This section describes the `RawExecResult` interface, including its properties such as `cmd` (the command executed), `killed` (boolean indicating if the process was killed), `signal` (the signal that caused termination), `code` (the exit code), `stdout` (standard output), and `stderr` (standard error). It also shows the inheritance hierarchy where `RawExecResult` is the base for `ExecResult`.