@tachybase/module-workflow
Version:
A powerful BPM tool that provides foundational support for business automation, with the capability to extend unlimited triggers and nodes.
38 lines (37 loc) • 949 B
TypeScript
import { JOB_STATUS } from '../constants';
import { Instruction } from './default-node/interface';
export default class extends Instruction {
title: string;
type: string;
group: string;
icon: string;
color: string;
description: string;
fieldset: {
endStatus: {
type: string;
title: string;
'x-decorator': string;
'x-component': string;
enum: {
label: string;
value: JOB_STATUS;
}[];
required: boolean;
default: JOB_STATUS;
};
remarks: {
type: string;
title: string;
'x-decorator': string;
'x-component': string;
'x-component-props': {
autoSize: {
minRows: number;
};
placeholder: string;
};
};
};
end: boolean;
}