UNPKG

survey-pdf

Version:

Renders JSON-driven SurveyJS forms and their responses as PDF documents in the browser or Node.js: fillable interactive PDF forms (AcroForm) or static printouts.

13 lines (12 loc) 499 B
import { IPdfBrickOptions, PdfBrick } from './pdf_brick'; import { IRect, DocController } from '../doc_controller'; import { ITextStyle } from '../style/types'; export interface IHTMLOptions extends IPdfBrickOptions { html: string; } export declare class HTMLBrick extends PdfBrick { protected options: IHTMLOptions; protected style: ITextStyle; constructor(controller: DocController, rect: IRect, options: IHTMLOptions, style: ITextStyle); renderInteractive(): Promise<void>; }