mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
20 lines
473 B
Plaintext
20 lines
473 B
Plaintext
![]() |
# 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
|