module Sprockets::Rails::HelperAssetResolvers

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

# sig/sprockets/rails/helper.rbs

module Sprockets::Rails::HelperAssetResolvers
  def self.[]: (Symbol name) -> untyped
end

def self.[](name)

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

def self.[]: (Symbol name) -> untyped

This signature was generated using 2 samples from 2 applications.

:nodoc:
the class namespace with our internals.
Use a separate module since Helper is mixed in and we needn't pollute
def self.[](name)
  case name
  when :manifest
    Manifest
  when :environment
    Environment
  else
    raise ArgumentError, "Unrecognized asset resolver: #{name.inspect}. Expected :manifest or :environment"
  end
end