class ActionDispatch::FileHandler

def each_precompressed_filepath(filepath)

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

def each_precompressed_filepath: (String filepath) -> nil

This signature was generated using 4 samples from 1 application.

def each_precompressed_filepath(filepath)
  @precompressed.each do |content_encoding|
    precompressed_ext = PRECOMPRESSED.fetch(content_encoding)
    yield content_encoding, "#{filepath}#{precompressed_ext}"
  end
  nil
end