class ISO3166::Country

def reload

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

def reload: () -> Hash

This signature was generated using 172 samples from 2 applications.

def reload
  @data = if @country_data_or_code.is_a?(Hash)
            @country_data_or_code
          else
            ISO3166::Data.new(@country_data_or_code).call
          end
end