2024-11-08 15:44:31 +00:00
|
|
|
declare function _exports({ request }: {
|
2024-12-10 14:20:48 +00:00
|
|
|
request?: http.IncomingMessage & {
|
|
|
|
[x: string]: any;
|
|
|
|
};
|
|
|
|
}): {
|
|
|
|
[x: string]: any;
|
|
|
|
};
|
2024-11-08 15:44:31 +00:00
|
|
|
export = _exports;
|
|
|
|
import http = require("http");
|