class ActionView::AbstractRenderer::RenderedTemplate

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

# sig/action_view/renderer/abstract_renderer.rbs

class ActionView::AbstractRenderer::RenderedTemplate
  def format: () -> Symbol?
  def initialize: (ActionView::OutputBuffer body, ActionView::Template template) -> void
end

:nodoc:

def format

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

def format: () -> Symbol?

This signature was generated using 3 samples from 1 application.

def format
  template.format
end

def initialize(body, template)

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

def initialize: (ActionView::OutputBuffer body, ActionView::Template template) -> void

This signature was generated using 7 samples from 1 application.

def initialize(body, template)
  @body = body
  @template = template
end