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) • 545 B
TypeScript
import { IRect, DocController } from '../doc_controller';
import { IPdfBrickOptions, PdfBrick } from './pdf_brick';
import { IInputStyle } from '../style/types';
export interface IRankingItemBrickOptions extends IPdfBrickOptions {
mark: string;
}
export declare class RankingItemBrick extends PdfBrick {
protected options: IRankingItemBrickOptions;
protected style: IInputStyle;
constructor(controller: DocController, rect: IRect, options: IRankingItemBrickOptions, style: IInputStyle);
renderInteractive(): Promise<void>;
}