Valens-AIO/types/utils/HttpFileUtil.d.ts

9 lines
328 B
TypeScript
Raw Permalink Normal View History

2022-12-25 18:45:37 -05:00
/// <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;
}