UNPKG

@nocobase/flow-engine

Version:

A standalone flow engine for NocoBase, managing workflows, models, and actions.

25 lines (24 loc) 745 B
/** * This file is part of the NocoBase (R) project. * Copyright (c) 2020-2024 NocoBase Co., Ltd. * Authors: NocoBase Team. * * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License. * For more information, please refer to: https://www.nocobase.com/agreement. */ import React from 'react'; import { FlowModel } from '../../../../models'; /** * 默认的设置菜单图标组件 * 提供原有的配置菜单功能 */ interface DefaultSettingsIconProps { model: FlowModel; showDeleteButton?: boolean; showCopyUidButton?: boolean; menuLevels?: number; flattenSubMenus?: boolean; [key: string]: any; } export declare const DefaultSettingsIcon: React.FC<DefaultSettingsIconProps>; export {};