httpx/sig/loggable.rbs
2020-11-24 16:38:46 +00:00

11 lines
232 B
Plaintext

module HTTPX
interface _IOLogger
def <<: (string?) -> void
end
module Loggable
def log: (?level: Integer?, ?color: Symbol?) { () -> String } -> void
def log_exception: (StandardError, **untyped) -> void
end
end