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.
12 lines (11 loc) • 457 B
TypeScript
import { PdfBrick } from './pdf_brick';
import { DocController, IRect } from '../doc_controller';
import { IBorderExtendedStyle } from '../helper_survey';
export interface IEmptyBrickStyle extends IBorderExtendedStyle {
color?: string;
}
export declare class EmptyBrick extends PdfBrick {
protected style: IEmptyBrickStyle;
constructor(controller: DocController, rect: IRect, style?: IEmptyBrickStyle);
renderInteractive(): Promise<void>;
}