4 lines
185 B
TypeScript
4 lines
185 B
TypeScript
|
import Response = require('http-response-object');
|
||
|
declare type Callback = (err: NodeJS.ErrnoException | null, response?: Response<NodeJS.ReadableStream>) => void;
|
||
|
export { Callback };
|