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

    Interface CLI

    interface CLI {
        run(args: readonly string[], cliConfig: CLIConfig): Promise<RunResult>;
    }

    Implemented by

    Index
    • Run the CLI with the provided arguments which do not include the invoked executable name.

      Parameters

      • args: readonly string[]

        the arguments to parse.

      • cliConfig: CLIConfig

        the CLIConfig for the CLI application.

      Returns Promise<RunResult>

      result of parsing arguments and running appropriate Command instances.