two-slot-extended-mags/types/utils/HttpFileUtil.d.ts
2024-08-05 20:33:00 +10:00

9 lines
342 B
TypeScript

/// <reference types="node" />
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;
}