13 lines
		
	
	
		
			335 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			335 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # 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
 | 
