ScavXpCounts/types/utils/HttpFileUtil.d.ts

8 lines
311 B
TypeScript
Raw Normal View History

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
}