Merge pull request #15630 from Homebrew/sorbet-files-update

sorbet: Update RBI files.
This commit is contained in:
Bo Anderson 2023-07-05 01:57:43 +01:00 committed by GitHub
commit 32ff40f688
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 6 deletions

View File

@ -1,9 +1,6 @@
# typed: strict
module Homebrew::EnvConfig
sig { returns(T.nilable(String)) }
def self.additional_google_analytics_id; end
sig { returns(T.nilable(String)) }
def self.all_proxy; end
@ -178,9 +175,6 @@ module Homebrew::EnvConfig
sig { returns(T::Boolean) }
def self.no_github_api?; end
sig { returns(T::Boolean) }
def self.no_google_analytics?; end
sig { returns(T::Boolean) }
def self.no_insecure_redirect?; end

View File

@ -77,6 +77,9 @@ class Formula
sig { params(args: T.untyped, options: T.untyped, block: T.untyped).returns(T.untyped) }
def deps(*args, **options, &block); end
sig { params(args: T.untyped, options: T.untyped, block: T.untyped).returns(T.untyped) }
def declared_deps(*args, **options, &block); end
sig { params(args: T.untyped, options: T.untyped, block: T.untyped).returns(T.untyped) }
def uses_from_macos_elements(*args, **options, &block); end