8 lines
311 B
TypeScript
8 lines
311 B
TypeScript
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;
|
|
}
|