@eagleoutice/flowr - v2.15.8
    Preparing search index...

    Information about an argument of a function that should be flagged as deprecated if it is called with this argument

    Used in DeprecatedFunctionInformation to mark a function argument as deprecated under certain conditions

    interface DeprecatedArgumentInformation {
        argIdx?: number;
        argName?: string;
        ifValue?: string | RegExp;
        replacedBy?: string;
        sinceVersion?: Range;
        state?: DeprecationState;
    }
    Index
    argIdx?: number

    Index of the argument

    argName?: string

    Name of the argument

    ifValue?: string | RegExp

    Only mark this argument as deprecated, if a specific value was provided

    replacedBy?: string

    Suggested replacement for this argument

    sinceVersion?: Range

    The version since this argument is deprecated

    The state of deprecation DeprecationState, i.e. is the argument completely removed, or are there better alternatives