@rudderstack/json-template-engine
Version:
A library for evaluating JSON template expressions.
12 lines • 474 B
TypeScript
import { SyntaxType } from './types';
export declare const VARS_PREFIX = "___";
export declare const DATA_PARAM_KEY = "___d";
export declare const BINDINGS_PARAM_KEY = "___b";
export declare const BINDINGS_CONTEXT_KEY = "___b.context.";
export declare const RESULT_KEY = "___r";
export declare const FUNCTION_RESULT_KEY = "___f";
export declare const INDENTATION_SPACES = 4;
export declare const EMPTY_EXPR: {
type: SyntaxType;
};
//# sourceMappingURL=constants.d.ts.map