9 lines
342 B
TypeScript
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;
|
|
}
|