class ActionController::Parameters

def convert_hashes_to_parameters(key, value)

Experimental RBS support (using type sampling data from the type_fusion project).

def convert_hashes_to_parameters: (Symbol key, String? value) -> untyped

This signature was generated using 2 samples from 1 application.

def convert_hashes_to_parameters(key, value)
  converted = convert_value_to_parameters(value)
  @parameters[key] = converted unless converted.equal?(value)
  converted
end