---
symbol: RunCmdContext
module: "@tsed/cli"
type: interface
meta:
 - name: keywords
   description: api typescript node.js documentation RunCmdContext interface
---
# RunCmdContext - @tsed/cli

## Usage

```typescript
import { RunCmdContext } from "@tsed/cli";
```

> See [/packages/cli/src/commands/run/RunCmd.ts](https://github.com/tsedio/tsed-cli/blob/v7.5.1/packages/cli/src/commands/run/RunCmd.ts#L0-L0).

## Overview

```ts
interface RunCmdContext {
    production: boolean;
    command: string;
    rawArgs: string[];
}
```

<!-- Members -->

## production

```ts
production: boolean;
```

## command

```ts
command: string;
```

## rawArgs

```ts
rawArgs: string[];
```
