ScavXpCounts/types/utils/HttpFileUtil.d.ts
2024-11-12 11:51:30 -07:00

8 lines
311 B
TypeScript

import { ServerResponse } from "node:http";
import { HttpServerHelper } from "@spt/helpers/HttpServerHelper";
export declare class HttpFileUtil {
protected httpServerHelper: HttpServerHelper;
constructor(httpServerHelper: HttpServerHelper);
sendFile(resp: ServerResponse, filePath: string): void;
}