@karmaniverous/get-dotenv
    Preparing search index...

    Interface ResolveCliOptionsResult<T>

    Result of CLI option resolution.

    interface ResolveCliOptionsResult<T> {
        command?: string;
        merged: T;
    }

    Type Parameters

    • T
    Index

    Properties

    Properties

    command?: string

    Positional command (string) resolved for invokers that accept a command payload (e.g., batch parent or cmd alias). When absent, no command is set.

    merged: T

    The merged options object after applying defaults, inherited parent values, and the current CLI flags. This bag is used as the effective root options for the current invocation.