sig/plugins/ntlm_authentication.rbs in httpx-0.15.4 vs sig/plugins/ntlm_authentication.rbs in httpx-0.16.0

- old
+ new

@@ -2,13 +2,12 @@ module Plugins module NTLMAuthentication interface _NTLMOptions def ntlm: () -> NTLMParams? - def ntlm=: (NTLMParams) -> NTLMParams end - + def self.extra_options: (Options) -> (Options & _NTLMOptions) def self.load_dependencies: (*untyped) -> void module InstanceMethods @@ -20,8 +19,8 @@ attr_reader password: String attr_reader domain: String? end end - type sessionNTLMAuthentication = Plugins::sessionAuthentication & Plugins::NTLMAuthentication::InstanceMethods + type sessionNTLMAuthentication = sessionAuthentication & NTLMAuthentication::InstanceMethods end end