mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-11-22 00:05:57 -05:00
26 lines
559 B
Plaintext
26 lines
559 B
Plaintext
module HTTPX
|
|
module Plugins
|
|
module Compression
|
|
module GZIP
|
|
# def self.load_dependencies: (singleton(Session)) -> void
|
|
def self.configure: (*untyped) -> void
|
|
|
|
def self?.encoder: () -> Encoder
|
|
def self?.decoder: () -> Decoder
|
|
|
|
class Encoder
|
|
include _Deflater
|
|
|
|
@compressed_chunk: String
|
|
|
|
private
|
|
|
|
def initialize: () -> untyped
|
|
def write: (string) -> void
|
|
def compressed_chunk: () -> String
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|