two-slot-extended-mags/types/utils/HttpFileUtil.d.ts
2023-06-11 15:10:34 +10:00

9 lines
328 B
TypeScript

/// <reference types="node" />
import { ServerResponse } from "http";
import { HttpServerHelper } from "../helpers/HttpServerHelper";
export declare class HttpFileUtil {
protected httpServerHelper: HttpServerHelper;
constructor(httpServerHelper: HttpServerHelper);
sendFile(resp: ServerResponse, file: any): void;
}