class ActiveSupport::Duration

def ===(other) # :nodoc:

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

type ActiveSupport__Duration_===_other = String | nil | Integer | Time | Date

def ===: (ActiveSupport__Duration_===_other other) -> false

This signature was generated using 109 samples from 3 applications.

:nodoc:
def ===(other) # :nodoc:
  other.is_a?(Duration)
rescue ::NoMethodError
  false
end