class ActiveSupport::Duration

def days(value) # :nodoc:

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

def days: (Integer value) -> ActiveSupport::Duration

This signature was generated using 1 sample from 1 application.

:nodoc:
def days(value) # :nodoc:
  new(value * SECONDS_PER_DAY, { days: value }, true)
end