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