class ActiveModel::Type::Integer
def deserialize(value)
Experimental RBS support (using type sampling data from the type_fusion
project).
def deserialize: (Integer? value) -> Integer?
This signature was generated using 7 samples from 1 application.
def deserialize(value) return if value.blank? value.to_i end