InsuranceTweaks/types/utils/HttpFileUtil.d.ts

9 lines
342 B
TypeScript
Raw Normal View History

2024-07-15 09:59:30 +02:00
/// <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;
}