class ActiveRecord::ConnectionAdapters::SchemaCache

def ignored_table?(table_name)

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

def ignored_table?: (String table_name) -> false

This signature was generated using 2 samples from 1 application.

def ignored_table?(table_name)
  ActiveRecord.schema_cache_ignored_tables.any? do |ignored|
    ignored === table_name
  end
end