Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | 4x 4x 4x 4x 4x 4x | export const ACTIVITI_NAMESPACE = 'http://activiti.org/bpmn'; export const BPMN_MODEL_NAMESPACE = 'http://www.omg.org/spec/BPMN/20100524/MODEL'; export const XMLNS_NAMESPACE = 'http://www.w3.org/2000/xmlns/'; export const XSI_NAMESPACE = 'http://www.w3.org/2001/XMLSchema-instance'; export const managedExtensionChildNames = new Set([ 'field', 'in', 'out', 'taskListener', 'executionListener', 'formProperty', 'failedJobRetryTimeCycle', 'mapException', 'eventListener', 'localization', ]); export const processPreFlowChildNames = new Set([ 'documentation', 'extensionElements', 'auditing', 'monitoring', 'property', 'laneSet', ]); |