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.
10 lines (9 loc) • 538 B
TypeScript
import { QuestionMatrixDynamicModel } from 'survey-core';
import { SurveyPDF } from '../survey';
import { DocController } from '../doc_controller';
import { FlatMatrixMultiple } from './flat_matrixmultiple';
import { IQuestionMatrixDynamicStyle } from '../style/types';
export declare class FlatMatrixDynamic extends FlatMatrixMultiple<QuestionMatrixDynamicModel> {
protected survey: SurveyPDF;
constructor(survey: SurveyPDF, question: QuestionMatrixDynamicModel, controller: DocController, style: IQuestionMatrixDynamicStyle);
}