@ironsoftware/ironpdf
Version:
IronPDF for Node
10 lines • 985 B
TypeScript
import { ChromePdfRenderOptions, HttpLoginCredentials } from "../../../public/render";
export declare function renderHtmlZipToPdf(zipFilePath: string, mainHtmlFile?: string, renderOption?: ChromePdfRenderOptions | undefined, httpLoginCredentials?: HttpLoginCredentials | undefined): Promise<string>;
export declare function renderUrlToPdf(url: URL, options?: {
renderOptions?: ChromePdfRenderOptions | undefined;
httpLoginCredentials?: HttpLoginCredentials | undefined;
} | undefined): Promise<string>;
export declare function renderHtmlToPdf(html: string, renderOption?: ChromePdfRenderOptions | undefined, httpLoginCredentials?: HttpLoginCredentials | undefined): Promise<string>;
export declare function renderHtmlFileToPdf(htmlPath: string, renderOption?: ChromePdfRenderOptions | undefined, httpLoginCredentials?: HttpLoginCredentials | undefined): Promise<string>;
export declare function mergePdfs(pdfIds: string[]): Promise<string>;
//# sourceMappingURL=render.d.ts.map