class ActiveSupport::HashWithIndifferentAccess

def convert_key(key)

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

def convert_key: ((String | Symbol) key) -> String

This signature was generated using 5 samples from 1 application.

def convert_key(key)
  key.kind_of?(Symbol) ? key.name : key
end