class ActionView::PartialRenderer
def render(partial, context, block)
Experimental RBS support (using type sampling data from the type_fusion
project).
def render: (String partial, (#<Class:0x000074fcc0ca0648> | #<Class:0x00007261c56526d0>) context, nil block) -> ActionView::AbstractRenderer::RenderedTemplate
This signature was generated using 2 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