20 lines
473 B
Plaintext
Raw Normal View History

2024-03-16 08:35:02 -07:00
# typed: strict
# This file contains global args as defined in `Homebrew::CLI::Parser.global_options`
# `Command`-specific args are defined in the commands themselves, with type signatures
# generated by the `Tapioca::Compilers::Args` compiler.
class Homebrew::CLI::Args
sig { returns(T::Boolean) }
def debug?; end
sig { returns(T::Boolean) }
def help?; end
sig { returns(T::Boolean) }
def quiet?; end
sig { returns(T::Boolean) }
def verbose?; end
end