low-code-service
Version:
to handle workflow execution, handlebars execution and condition execution for low code service
8 lines (7 loc) • 449 B
TypeScript
import workflowService from './workflow/workflow';
import { RELATIONAL_OPERATORS as relationalOperators, LOGICAL_OPERATORS as logicalOperators } from './condition-executor/condition-handler';
declare const handleBarHelpers: {
getTemplateData: (template: string, data: any) => string;
cleanHandleBarTemplate: (dataToClean: any, defaultBody: any) => any;
};
export { handleBarHelpers, workflowService, relationalOperators, logicalOperators };