low-code-service
Version:
to handle workflow execution, handlebars execution and condition execution for low code service
15 lines (13 loc) • 464 B
text/typescript
import { getTemplateData, cleanHandleBarTemplate } from './handlebars/handlebars-handler';
import workflowService from './workflow/workflow';
import { RELATIONAL_OPERATORS as relationalOperators, LOGICAL_OPERATORS as logicalOperators } from './condition-executor/condition-handler';
const handleBarHelpers = {
getTemplateData,
cleanHandleBarTemplate
};
export {
handleBarHelpers,
workflowService,
relationalOperators,
logicalOperators
}