module RSpec::Support

def self.thread_local_data

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

def self.thread_local_data: () -> untyped

This signature was generated using 12 samples from 1 application.

A single thread local variable so we don't excessively pollute that namespace.
def self.thread_local_data
  Thread.current[:__rspec] ||= {}
end