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) • 437 B
TypeScript
export interface IVariablesManager {
setup(variables: {
[index: string]: string;
}): void;
getSizeVariable(name: string): number;
getColorVariable(name: string): string;
startCollectingVariables(): void;
stopCollectingVariables(): void;
}
export declare function registerVariablesManagerCreator(creator: () => IVariablesManager): void;
export declare function createVariablesManager(): IVariablesManager;