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

This commit is contained in:
Patrick Linnane 2024-04-26 19:29:37 -07:00 committed by GitHub
commit 0bb104d6e1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 19 additions and 7 deletions

View File

@ -4,10 +4,4 @@
# This is an autogenerated file for dynamic methods in `Homebrew::CLI::Args`.
# Please instead update this file by running `bin/tapioca dsl Homebrew::CLI::Args`.
class Homebrew::CLI::Args
sig { returns(T::Boolean) }
def only_public?; end
sig { returns(T::Boolean) }
def open?; end
end
class Homebrew::CLI::Args; end

View File

@ -0,0 +1,18 @@
# typed: true
# DO NOT EDIT MANUALLY
# This is an autogenerated file for dynamic methods in `Homebrew::DevCmd::Rubydoc`.
# Please instead update this file by running `bin/tapioca dsl Homebrew::DevCmd::Rubydoc`.
class Homebrew::DevCmd::Rubydoc
sig { returns(Homebrew::DevCmd::Rubydoc::Args) }
def args; end
end
class Homebrew::DevCmd::Rubydoc::Args < Homebrew::CLI::Args
sig { returns(T::Boolean) }
def only_public?; end
sig { returns(T::Boolean) }
def open?; end
end