module ActiveSupport::Autoload

def self.extended(base) # :nodoc:

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

def self.extended: ((Class | Module) base) -> false

This signature was generated using 4 samples from 1 application.

:nodoc:
def self.extended(base) # :nodoc:
  base.class_eval do
    @_autoloads = {}
    @_under_path = nil
    @_at_path = nil
    @_eager_autoload = false
  end
end