low-code-service
Version:
to handle workflow execution, handlebars execution and condition execution for low code service
14 lines (13 loc) • 525 B
TypeScript
import { GetWorkFlowRequestData } from './types';
declare class WorkFlowService {
getHandleBarsTemplate(template: any, data: any): string;
getConditionResult(filters: any, dataForFilters: any): any;
getWorkFlowRequestData(apiData: GetWorkFlowRequestData, param: Object): {
[x: string]: string;
headers: string;
url: string;
};
getCurlCommand(apiData: GetWorkFlowRequestData, param: Object): string;
}
declare const workflowService: WorkFlowService;
export default workflowService;