UNPKG

@tachybase/module-workflow

Version:

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

45 lines (44 loc) 1.27 kB
import { VariableOption, WorkflowVariableInput } from '../..'; import { Instruction } from '../../nodes/default-node/interface'; export default class extends Instruction { title: string; type: string; group: string; icon: string; color: string; description: string; fieldset: { target: { type: string; title: string; description: string; 'x-decorator': string; 'x-component': string; 'x-component-props': { changeOnSelect: boolean; useTypedConstant: string[]; className: string; }; required: boolean; }; remarks: { type: string; title: string; 'x-decorator': string; 'x-component': string; 'x-component-props': { autoSize: { minRows: number; }; placeholder: string; }; }; }; components: { WorkflowVariableInput: typeof WorkflowVariableInput; }; Component({ data }: { data: any; }): import("react/jsx-runtime").JSX.Element; useScopeVariables(node: any, options: any): VariableOption[]; }