/** * The Camunda create/append taxonomy: a drill-in tree of categories over the * flat options that `bpmn-js-create-append-anything` provides. */ export const CREATE_OPTIONS_TREE: { id: string; name: string; className: string; items: any; }[]; /** * Plain-language descriptions for the categories, keyed by category id. */ export const GROUP_DESCRIPTIONS: { tasks: string; gateways: string; subprocesses: string; events: string; 'start-events': string; 'intermediate-catch-events': string; 'intermediate-throw-events': string; 'boundary-events': string; 'end-events': string; data: string; participants: string; };