@flowscripter/dynamic-cli-framework
    Preparing search index...

    Interface RunResult

    Result of a CLI invocation.

    interface RunResult {
        command?: Command;
        error?: Error;
        invalidArguments?: readonly InvalidArgument[];
        runState: RunState;
    }
    Index
    command?: Command
    error?: Error
    invalidArguments?: readonly InvalidArgument[]
    runState: RunState

    The state after processing the invocation.