Codebase list node-decompress-response / debian/6.0.0-2 index.test-d.ts
debian/6.0.0-2

Tree @debian/6.0.0-2 (Download .tar.gz)

index.test-d.ts @debian/6.0.0-2raw · history · blame

1
2
3
4
5
6
7
import * as http from 'http';
import {expectType} from 'tsd';
import decompressResponse = require('.');

http.get('localhost', response => {
	expectType<http.IncomingMessage>(decompressResponse(response));
});