mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
7 lines
195 B
Ruby
7 lines
195 B
Ruby
# typed: strict
|
|
|
|
module OnSystem::MacOSOnly
|
|
sig { params(arm: T.nilable(String), intel: T.nilable(String)).returns(T.nilable(String)) }
|
|
def on_arch_conditional(arm: nil, intel: nil); end
|
|
end
|