2024-03-21 14:30:48 +08:00

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 };