class ActionView::PartialRenderer

def render(partial, context, block)

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

type ActionView__PartialRenderer_render_context = #<Class:0x00000001151de7f8> | #<Class:0x00000001229dd2a8> | #<Class:0x000000010e7a1ae8> | #<Class:0x0000000115bff5c0> | #<Class:0x0000000110baf520> | #<Class:0x000000010a40b900> | #<Class:0x000000010fc608d0>

def render: (String partial, ActionView__PartialRenderer_render_context context, nil block) -> ActionView::AbstractRenderer::RenderedTemplate

This signature was generated using 7 samples from 1 application.

def render(partial, context, block)
  template = find_template(partial, template_keys(partial))
  if !block && (layout = @options[:layout])
    layout = find_template(layout.to_s, template_keys(partial))
  end
  render_partial_template(context, @locals, template, layout, block)
end