UNPKG

@nocobase/plugin-workflow

Version:

A powerful BPM tool that provides foundational support for business automation, with the capability to extend unlimited triggers and nodes.

20 lines (19 loc) 568 B
import React from 'react'; export interface TaskTypeOptions { title: string; collection: string; action?: string; useActionParams: Function; Actions?: React.ComponentType; Item: React.ComponentType; Detail: React.ComponentType; alwaysShow?: boolean; } export declare const TASK_STATUS: { ALL: string; PENDING: string; COMPLETED: string; }; export declare function usePopupRecordContext(): any; export declare function WorkflowTasks(): React.JSX.Element; export declare function TasksProvider(props: any): React.JSX.Element;