UNPKG

@nocobase/plugin-action-bulk-update

Version:

Batch update all records or selected records.

22 lines (21 loc) 742 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 { ActionModel, AssignFormModel } from '@nocobase/client-v2'; import type { ButtonProps } from 'antd/es/button'; export declare class BulkUpdateActionModel extends ActionModel<{ subModels: { assignForm: AssignFormModel; }; }> { static scene: import("@nocobase/client-v2").ActionSceneType; static capabilityActionName: string; assignFormUid?: string; defaultProps: ButtonProps; getAclActionName(): string; }