mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-10-04 00:00:37 -04:00
20 lines
467 B
Plaintext
20 lines
467 B
Plaintext
module HTTPX
|
|
module Plugins
|
|
module Multipart
|
|
# def self.load_dependencies: (singleton(Session)) -> void
|
|
def self.configure: (*untyped) -> void
|
|
def self?.encode: (untyped) -> Encoder
|
|
|
|
class Encoder
|
|
include Transcoder::_Encoder
|
|
include _ToS
|
|
include _ReadableStream
|
|
|
|
private
|
|
|
|
def initalize: (Hash[Symbol | string, HTTP::FormData::Part | string] multipart_data) -> untyped
|
|
end
|
|
end
|
|
end
|
|
end
|