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

    Interface InvalidArgument

    Details of an invalid parsed argument.

    interface InvalidArgument {
        argument?: Argument | ComplexOption;
        message?: string;
        name?: string;
        reason: InvalidArgumentReason;
        value?:
            | PopulatedArgumentValueType
            | PopulatedArgumentValues
            | (PopulatedArgumentValueType | PopulatedArgumentValues)[];
    }
    Index
    argument?: Argument | ComplexOption

    The Argument (if it was able to be populated)

    message?: string

    An optional message providing detail about the validation failure. Populated when reason is InvalidArgumentReason.CUSTOM_VALIDATION.

    name?: string

    The name of the argument specified (if it was able to be populated)

    A reason for the parsing error

    value?:
        | PopulatedArgumentValueType
        | PopulatedArgumentValues
        | (PopulatedArgumentValueType | PopulatedArgumentValues)[]

    The argument value (if it was able to be populated).

    NOTE: This value is unlikely to be valid as it is the cause of the invalid argument error.