Codebase list node-decompress-response / run/d1105575-b2dc-4cec-ab2c-76b8bef4b2db/main index.test-d.ts
run/d1105575-b2dc-4cec-ab2c-76b8bef4b2db/main

Tree @run/d1105575-b2dc-4cec-ab2c-76b8bef4b2db/main (Download .tar.gz)

index.test-d.ts @run/d1105575-b2dc-4cec-ab2c-76b8bef4b2db/mainraw · 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));
});