mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-06-02 06:29:40 +08:00
12 lines
450 B
TypeScript
12 lines
450 B
TypeScript
// Type definitions for decompress-response 3.3
|
|
// Project: https://github.com/sindresorhus/decompress-response#readme
|
|
// Definitions by: Daniel Rosenwasser <https://github.com/DanielRosenwasser>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference types="node" />
|
|
|
|
import http = require("http");
|
|
|
|
export = decompress_response;
|
|
declare function decompress_response(response: http.IncomingMessage): http.IncomingMessage;
|