2023-06-11 15:10:34 +10:00
|
|
|
/// <reference types="node" />
|
2024-04-03 20:15:11 +11:00
|
|
|
import { ServerResponse } from "node:http";
|
|
|
|
import { HttpServerHelper } from "@spt-aki/helpers/HttpServerHelper";
|
2023-06-11 15:10:34 +10:00
|
|
|
export declare class HttpFileUtil {
|
|
|
|
protected httpServerHelper: HttpServerHelper;
|
|
|
|
constructor(httpServerHelper: HttpServerHelper);
|
2024-04-03 20:15:11 +11:00
|
|
|
sendFile(resp: ServerResponse, filePath: string): void;
|
2023-06-11 15:10:34 +10:00
|
|
|
}
|