brew/Library/Homebrew/options.rbi
Douglas Eichelberger adfd12cfd0 Enable more typing
2023-03-21 21:42:51 -07:00

9 lines
219 B
Ruby

# typed: strict
class Options
# This is a workaround to enable `alias to_ary to_a`
# @see https://github.com/sorbet/sorbet/issues/2378#issuecomment-569474238
sig { returns(T::Array[Option]) }
def to_a; end
end