/** * Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH * under one or more contributor license agreements. See the NOTICE file * distributed with this work for additional information regarding copyright * ownership. * * Camunda licenses this file to you under the MIT; you may not use this file * except in compliance with the MIT License. */ export const ELEMENT_DESCRIPTIONS: { task: string; 'user-task': string; 'service-task': string; 'send-task': string; 'receive-task': string; 'manual-task': string; 'rule-task': string; 'script-task': string; 'call-activity': string; transaction: string; 'event-subprocess': string; 'collapsed-subprocess': string; 'expanded-subprocess': string; 'collapsed-ad-hoc-subprocess': string; 'expanded-ad-hoc-subprocess': string; 'exclusive-gateway': string; 'parallel-gateway': string; 'inclusive-gateway': string; 'complex-gateway': string; 'event-based-gateway': string; 'data-store-reference': string; 'data-object-reference': string; 'expanded-pool': string; 'collapsed-pool': string; 'none-start-event': string; 'none-intermediate-throwing': string; 'none-boundary-event': string; 'none-end-event': string; 'message-start': string; 'timer-start': string; 'conditional-start': string; 'signal-start': string; 'error-start': string; 'escalation-start': string; 'compensation-start': string; 'non-interrupting-message-start': string; 'non-interrupting-timer-start': string; 'non-interrupting-conditional-start': string; 'non-interrupting-signal-start': string; 'non-interrupting-escalation-start': string; 'message-intermediate-catch': string; 'message-intermediate-throw': string; 'timer-intermediate-catch': string; 'escalation-intermediate-throw': string; 'conditional-intermediate-catch': string; 'link-intermediate-catch': string; 'link-intermediate-throw': string; 'compensation-intermediate-throw': string; 'signal-intermediate-catch': string; 'signal-intermediate-throw': string; 'message-boundary': string; 'timer-boundary': string; 'escalation-boundary': string; 'conditional-boundary': string; 'error-boundary': string; 'cancel-boundary': string; 'signal-boundary': string; 'compensation-boundary': string; 'non-interrupting-message-boundary': string; 'non-interrupting-timer-boundary': string; 'non-interrupting-escalation-boundary': string; 'non-interrupting-conditional-boundary': string; 'non-interrupting-signal-boundary': string; 'message-end': string; 'escalation-end': string; 'error-end': string; 'cancel-end': string; 'compensation-end': string; 'signal-end': string; 'terminate-end': string; 'sequence-flow': string; 'default-flow': string; 'conditional-flow': string; };