Skip to content

RunCmdContext

@tsed/cli

Usage

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

See /packages/cli/src/commands/run/RunCmd.ts.

Overview

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

production

ts
production: boolean;

command

ts
command: string;

rawArgs

ts
rawArgs: string[];

Released under the MIT License.