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.

10 lines (9 loc) 297 B
import { type IRect } from './doc_controller'; export declare function mergeRects(...rects: IRect[]): IRect; export interface ISideValues<T = number> { top: T; bot: T; left: T; right: T; } export declare function parseSideValues<T = number>(padding: Array<T> | T): ISideValues<T>;