class ActionDispatch::Response

def handle_no_content!

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

def handle_no_content!: () -> nil

This signature was generated using 1 sample from 1 application.

def handle_no_content!
  if NO_CONTENT_CODES.include?(@status)
    @header.delete CONTENT_TYPE
    @header.delete "Content-Length"
  end
end