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.

9 lines (8 loc) 444 B
import { QuestionPanelDynamicModel } from 'survey-core'; import { IPoint } from '../doc_controller'; import { FlatQuestion } from './flat_question'; import { IPdfBrick } from '../pdf_render/pdf_brick'; import { IQuestionPanelDynamicStyle } from '../style/types'; export declare class FlatPanelDynamic extends FlatQuestion<QuestionPanelDynamicModel, IQuestionPanelDynamicStyle> { generateFlatsContent(point: IPoint): Promise<IPdfBrick[]>; }