enum RunState

Members

EXECUTION_ERROR = 3

Arguments were successfully parsed and command(s) discovered but command execution failed.

NO_COMMAND = 2

Arguments were successfully parsed but no command was discovered.

PARSE_ERROR = 1

The arguments supplied were invalid or could not be parsed.

RUNTIME_ERROR = 4

General runtime error related to the framework.

SUCCESS = 0

Arguments were successfully parsed and the specified command(s) were successfully executed.

Usage

import { RunState } from ".";