mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
9 lines
219 B
Ruby
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
|