ScavXpCounts/types/utils/HttpFileUtil.d.ts

9 lines
339 B
TypeScript
Raw Normal View History

2023-08-17 19:49:16 -06:00
/// <reference types="node" />
2024-02-23 15:06:00 -07:00
import { ServerResponse } from "node:http";
import { HttpServerHelper } from "@spt-aki/helpers/HttpServerHelper";
2023-08-17 19:49:16 -06:00
export declare class HttpFileUtil {
protected httpServerHelper: HttpServerHelper;
constructor(httpServerHelper: HttpServerHelper);
sendFile(resp: ServerResponse, file: any): void;
}