2024-02-23 15:06:00 -07:00
|
|
|
import { ServerResponse } from "node:http";
|
2024-11-12 11:51:30 -07:00
|
|
|
import { HttpServerHelper } from "@spt/helpers/HttpServerHelper";
|
2023-08-17 19:49:16 -06:00
|
|
|
export declare class HttpFileUtil {
|
|
|
|
protected httpServerHelper: HttpServerHelper;
|
|
|
|
constructor(httpServerHelper: HttpServerHelper);
|
2024-04-19 21:23:52 -06:00
|
|
|
sendFile(resp: ServerResponse, filePath: string): void;
|
2023-08-17 19:49:16 -06:00
|
|
|
}
|