relu-bpmn
Version:
RELU快速开发平台bpmn组件
66 lines (65 loc) • 3.54 kB
TypeScript
declare const bpmnTask = "bpmn:UserTask";
declare const bpmnStart = "bpmn:StartEvent";
declare const bpmnEnd = "bpmn:EndEvent";
declare const bpmnGateway = "bpmn:InclusiveGateway";
declare const bpmnSequenceFlow = "bpmn:SequenceFlow";
declare const bpmnTimer = "bpmn:IntermediateCatchEvent";
declare const bpmnSubFlow = "subFlow";
declare const bpmnInclusive = "bpmn:InclusiveGateway";
declare const bpmnParallel = "bpmn:ParallelGateway";
declare const bpmnExclusive = "bpmn:ExclusiveGateway";
declare const bpmnChoose = "choose";
declare const bpmnGroup = "bpmn:Group";
declare const bpmnLabel = "label";
declare const bpmnIncoming = "bpmn2:incoming";
declare const bpmnTrigger = "trigger";
declare const bpmnExecute = "execute";
declare const bpmnOutgoing = "bpmn2:outgoing";
declare const bpmnAddData = "addData";
declare const bpmnGetData = "getData";
declare const bpmnUpdateData = "updateData";
declare const bpmnDelData = "deleteData";
declare const bpmnInterface = "dataInterface";
declare const bpmnLaunchFlow = "launchFlow";
declare const bpmnMessage = "message";
declare const bpmnSchedule = "schedule";
declare const bpmnEvent = "event";
declare const bpmnTime = "timeout";
declare const bpmnNotice = "notice";
declare const bpmnWebhook = "webhook";
declare const bpmnCopy = "copy";
declare const bpmnPaste = "paste";
declare const bpmnProcessing = "processing";
declare const typeStart = "start";
declare const typeGateway = "gateway";
declare const typeEnd = "end";
declare const typeTask = "approver";
declare const typeLabel = "label";
declare const typeTimer = "timer";
declare const typeSubFlow = "subFlow";
declare const typeConfluence = "confluence";
declare const typeGroup = "group";
declare const typeTrigger = "trigger";
declare const typeExecute = "execute";
declare const typeAddData = "addData";
declare const typeGetData = "getData";
declare const typeUpdateData = "updateData";
declare const typeDelData = "deleteData";
declare const typeInterface = "dataInterface";
declare const typeLaunchFlow = "launchFlow";
declare const typeMessage = "message";
declare const typeSchedule = "schedule";
declare const typeEventTrigger = "eventTrigger";
declare const typeTimeTrigger = "timeTrigger";
declare const typeNoticeTrigger = "noticeTrigger";
declare const typeWebhookTrigger = "webhookTrigger";
declare const typeConnect = "connect";
declare const typeCondition = "condition";
declare const typeCopy = "copy";
declare const typePaste = "paste";
declare const typeProcessing = "processing";
declare const typeInclusion = "inclusion";
declare const typeParallel = "parallel";
declare const typeExclusive = "exclusive";
declare const typeChoose = "choose";
export { bpmnTask, bpmnStart, bpmnEnd, bpmnGateway, bpmnSequenceFlow, bpmnLabel, bpmnTimer, bpmnSubFlow, bpmnInclusive, bpmnParallel, bpmnExclusive, bpmnGroup, bpmnTrigger, bpmnExecute, bpmnIncoming, bpmnOutgoing, bpmnAddData, bpmnGetData, bpmnUpdateData, bpmnDelData, bpmnInterface, bpmnLaunchFlow, bpmnMessage, bpmnSchedule, bpmnEvent, bpmnTime, bpmnNotice, bpmnWebhook, bpmnCopy, bpmnPaste, bpmnProcessing, bpmnChoose, typeAddData, typeGetData, typeUpdateData, typeDelData, typeInterface, typeLaunchFlow, typeMessage, typeSchedule, typeEventTrigger, typeTimeTrigger, typeNoticeTrigger, typeWebhookTrigger, typeConnect, typeCondition, typeStart, typeGateway, typeEnd, typeTask, typeLabel, typeTimer, typeSubFlow, typeConfluence, typeGroup, typeTrigger, typeExecute, typeCopy, typePaste, typeProcessing, typeInclusion, typeParallel, typeExclusive, typeChoose, };