httpx/sig/plugins/ntlm_authentication.rbs
2022-05-08 17:23:07 +01:00

22 lines
489 B
Plaintext

module HTTPX
module Plugins
module NTLMAuth
interface _NTLMOptions
def ntlm: () -> Authentication::Ntlm?
end
def self.extra_options: (Options) -> (Options & _NTLMOptions)
def self.load_dependencies: (*untyped) -> void
module InstanceMethods
def ntlm_authentication: (string user, string password, ?string? domain) -> instance
end
end
type sessionNTLMAuth = sessionAuthentication & NTLMAuth::InstanceMethods
end
end