@tachybase/module-workflow
Version:
A powerful BPM tool that provides foundational support for business automation, with the capability to extend unlimited triggers and nodes.
37 lines (36 loc) • 915 B
TypeScript
import { CollectionFieldInterface } from '@tachybase/client';
export declare class ExpressionFieldInterface extends CollectionFieldInterface {
name: string;
type: string;
group: string;
icon: string;
order: number;
title: string;
description: string;
sortable: boolean;
default: {
type: string;
uiSchema: {
'x-component': string;
};
};
properties: {
'uiSchema.title': {
type: string;
title: string;
required: boolean;
"x-decorator": string;
"x-component": string;
};
name: {
type: string;
title: string;
required: boolean;
"x-disabled": string;
"x-decorator": string;
"x-component": string;
"x-validator": string;
description: string;
};
};
}