mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
13 lines
335 B
Plaintext
13 lines
335 B
Plaintext
![]() |
# typed: strict
|
||
|
|
||
|
module DependenciesHelpers
|
||
|
include Kernel
|
||
|
|
||
|
# This sig is in an RBI to avoid both circular dependencies and unnecessary requires
|
||
|
sig {
|
||
|
params(args: T.any(Homebrew::Cmd::Deps::Args, Homebrew::Cmd::Uses::Args))
|
||
|
.returns([T::Array[Symbol], T::Array[Symbol]])
|
||
|
}
|
||
|
def args_includes_ignores(args); end
|
||
|
end
|