Valens-Progression/types/utils/HttpFileUtil.d.ts
2022-12-25 18:45:30 -05: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;
}