mirror of
https://github.com/xuxiaobo-bobo/boda_jsEnv.git
synced 2025-04-22 23:44:23 +08:00
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 };
|