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) 550 B
import { PageModel } from 'survey-core'; import { FlatPanel, IFlatPanel } from './flat_panel'; import { IPoint } from '../doc_controller'; import { IPdfBrick } from '../pdf_render/pdf_brick'; import { IPageStyle } from '../style/types'; export interface IFlatPage extends IFlatPanel { } export declare class FlatPage extends FlatPanel<PageModel, IPageStyle> implements IFlatPage { protected generateTitleFlat(point: IPoint): Promise<IPdfBrick>; generateFlats(point: IPoint): Promise<IPdfBrick[]>; protected getGapBetweenRows(): number; }