class ActionDispatch::Response

def self.create(status = 200, header = {}, body = [], default_headers: self.default_headers)

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

def self.create: (?Integer status, ?Hash header, ?Array[] body, default_headers: Hash) -> ActionDispatch::Response

This signature was generated using 1 sample from 1 application.

def self.create(status = 200, header = {}, body = [], default_headers: self.default_headers)
  header = merge_default_headers(header, default_headers)
  new status, header, body
end