Sha256: 263c885310edc86b0bdacd7204488da310a03f0f96fd07bdf04ca67b7f5549f7
Contents?: true
Size: 648 Bytes
Versions: 20
Compression:
Stored size: 648 Bytes
Contents
module HTTPX module Plugins module NTLMAuthentication interface _NTLMOptions def ntlm: () -> NTLMParams? 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 class NTLMParams attr_reader user: String attr_reader password: String attr_reader domain: String? end end type sessionNTLMAuthentication = sessionAuthentication & NTLMAuthentication::InstanceMethods end end
Version data entries
20 entries across 20 versions & 1 rubygems