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.
17 lines (16 loc) • 514 B
TypeScript
import { IVariablesManager } from './index';
export declare class VariablesManager implements IVariablesManager {
private hash;
private colorHash;
private variables;
setup(variables: {
[index: string]: string;
}): void;
private tokenizeString;
private splitComponentValuesByTopLevelComma;
private getVariable;
getSizeVariable(name: string): number;
getColorVariable(name: string): string;
startCollectingVariables(): void;
stopCollectingVariables(): void;
}