class ActionDispatch::Routing::RouteSet

def url_helpers(supports_path = true)

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

def url_helpers: (?true supports_path) -> Module

This signature was generated using 2 samples from 1 application.

def url_helpers(supports_path = true)
  if supports_path
    @url_helpers_with_paths ||= generate_url_helpers(true)
  else
    @url_helpers_without_paths ||= generate_url_helpers(false)
  end
end